优化实践教程示例项目
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

29844 行
1.3 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtualActionInvoker0
{
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 VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtualActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
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>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
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 R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
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 T1>
struct GenericVirtualActionInvoker1
{
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>
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>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1>
struct 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 InvokerActionInvoker2;
template <typename T1, typename T2>
struct InvokerActionInvoker2<T1*, T2*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
{
void* params[2] = { p1, p2 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
template <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3;
template <typename T1, typename T2, typename T3>
struct InvokerActionInvoker3<T1*, T2*, T3*>
{
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
{
void* params[3] = { p1, p2, p3 };
method->invoker_method(methodPtr, method, obj, params, NULL);
}
};
// System.Comparison`1<System.Data.DataRow>
struct Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0;
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>
struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858;
// System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>
struct Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.String,System.Data.DataColumn>
struct Dictionary_2_tA1C46A4AE8BF6F61CE13FCB4610037808EA8AB66;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator>
struct Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470;
// System.Collections.Generic.Dictionary`2<System.String,System.Data.Index>
struct Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214;
// System.Collections.Generic.IEqualityComparer`1<System.Data.DataRow>
struct IEqualityComparer_1_t0720BD7BFFAA7744C7C96F4203DB51B849D2EECA;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Data.DataRow,System.Data.DataRowView>
struct KeyCollection_t11649B82E95E700669BC010BE8DA706BA609B720;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Data.Index>
struct KeyCollection_tF8213AC47121E92A72F2DF10A637B9C8FE0337A8;
// System.Collections.Generic.List`1<System.Data.DataColumn>
struct List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785;
// System.Collections.Generic.List`1<System.Data.DataTable>
struct List_1_t88A4402AE9BC4CABD28BA59887541C46E4076C81;
// System.Collections.Generic.List`1<System.Data.DataView>
struct List_1_t1CDDD861715A83BE1EF98CE75870A483BB5ECC93;
// System.Collections.Generic.List`1<System.Data.DataViewListener>
struct List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F;
// System.Collections.Generic.List`1<System.Data.Index>
struct List_1_tD455920B93EB13CDFF946088629D287A8D3CA973;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Data.Listeners`1<System.Data.DataViewListener>
struct Listeners_1_t37132A15E50B5B90C84260E8B1072BF1D7DB99CC;
// System.Data.RBTree`1<System.Int32>
struct RBTree_1_t8713B62AA89A0F1666C324D828FF52CBB922114D;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Data.DataRow,System.Data.DataRowView>
struct ValueCollection_tDE54342999F9F6BA9EB4C6AE1B2837AFDB2DE133;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Data.Index>
struct ValueCollection_t08F5EE58CCE2AE36E66598316C77BC3CF04222A1;
// System.Collections.Generic.Dictionary`2/Entry<System.Data.DataRow,System.Data.DataRowView>[]
struct EntryU5BU5D_tD5C3BCF77238ED00A4481AFE2FDC3A28FF0538AC;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Data.Index>[]
struct EntryU5BU5D_t0DF1DDB5B267FE44178086D4446EA3A12E4025D3;
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// System.Data.DataColumn[]
struct DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA;
// System.Data.DataRelation[]
struct DataRelationU5BU5D_t1640C9372BDC91DAE0359E08BE1E91AE48924FF0;
// System.Data.DataRow[]
struct DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4;
// System.Data.DataRowView[]
struct DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D;
// System.Data.DataTable[]
struct DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F;
// System.Data.DataViewListener[]
struct DataViewListenerU5BU5D_t9E1253C3BF8AECB929B7557B225F7F370E689FCF;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.Data.ExpressionNode[]
struct ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8;
// System.Data.Function[]
struct FunctionU5BU5D_t595AABF41FEE9352AA92388D09809A6DA97479FB;
// System.Data.IndexField[]
struct IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Data.OperatorInfo[]
struct OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880;
// System.ComponentModel.PropertyDescriptor[]
struct PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// System.UInt32[]
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
// System.Data.ExpressionParser/ReservedWords[]
struct ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
// System.Data.AggregateNode
struct AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
// System.ComponentModel.AttributeCollection
struct AttributeCollection_tD55D3E17234E299E07B6071F31FEEB993C9AD8CA;
// System.Data.AutoIncrementValue
struct AutoIncrementValue_tB454D864DCB48A3C8EB2F806BD0AB284BB735BCE;
// System.Data.BinaryNode
struct BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// System.Data.ChildForeignKeyConstraintEnumerator
struct ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E;
// System.ComponentModel.CollectionChangeEventArgs
struct CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D;
// System.ComponentModel.CollectionChangeEventHandler
struct CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// System.Data.ConstNode
struct ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426;
// System.Data.Constraint
struct Constraint_t0A8908A502F0A089936D95EF44F76F9628CFB50A;
// System.Data.ConstraintCollection
struct ConstraintCollection_tE6135623B0068FD56F0D15E13FFA1882D36BDD40;
// System.Data.ConstraintEnumerator
struct ConstraintEnumerator_t449C9ABFA44F2D009B1672ACAE220DB0921BF2C0;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// System.Data.DataColumn
struct DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66;
// System.Data.DataColumnChangeEventHandler
struct DataColumnChangeEventHandler_t666070D5D5C9A6CF6E9FA12E6FC15B7DB20C8959;
// System.Data.DataColumnCollection
struct DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E;
// System.Data.DataColumnPropertyDescriptor
struct DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3;
// System.Data.DataCommonEventSource
struct DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE;
// System.Data.DataError
struct DataError_tEE3A28C2A673D369980814389991CD62F45E56A1;
// System.Data.DataExpression
struct DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6;
// System.Data.DataRelation
struct DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656;
// System.Data.DataRelationCollection
struct DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956;
// System.Data.DataRelationPropertyDescriptor
struct DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9;
// System.Data.DataRow
struct DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388;
// System.Data.DataRowBuilder
struct DataRowBuilder_t8EFCEBE1AE55392AAE53DA15D2B334C56BB14566;
// System.Data.DataRowChangeEventHandler
struct DataRowChangeEventHandler_t2F295C9D2283CBF4D109CBDFCD141EF2A58B24BF;
// System.Data.DataRowCollection
struct DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738;
// System.Data.DataRowCreatedEventHandler
struct DataRowCreatedEventHandler_t9A8B728761AB985BA0979A4447A269DF5D429029;
// System.Data.DataRowView
struct DataRowView_t51724505EADBB0C11EEA0252510644143191B23B;
// System.Data.DataSet
struct DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B;
// System.Data.DataSetClearEventhandler
struct DataSetClearEventhandler_t66917FBEC6137CBE9E5D72CB53E1FF6EBE8333E1;
// System.Data.Common.DataStorage
struct DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A;
// System.Data.DataTable
struct DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07;
// System.Data.DataTableClearEventArgs
struct DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8;
// System.Data.DataTableClearEventHandler
struct DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B;
// System.Data.DataTableCollection
struct DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997;
// System.Data.DataTableNewRowEventArgs
struct DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3;
// System.Data.DataTableNewRowEventHandler
struct DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827;
// System.Data.DataTablePropertyDescriptor
struct DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860;
// System.Data.DataTableTypeConverter
struct DataTableTypeConverter_t506CC2F52B4C3BDCA7B60DB91D9AC2620B07BCC7;
// System.Data.DataView
struct DataView_t882C19B1455AFCE770D60A43A690096801824A50;
// System.Data.DataViewListener
struct DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA;
// System.Data.DataViewManager
struct DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8;
// System.Data.DataViewManagerListItemTypeDescriptor
struct DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1;
// System.Data.DataViewSetting
struct DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601;
// System.Data.DataViewSettingCollection
struct DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Data.DefaultValueTypeConverter
struct DefaultValueTypeConverter_t30873F22C066A99FB484DF367EDC7066639DED21;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// System.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377;
// System.ComponentModel.EventHandlerList
struct EventHandlerList_t057D7531265C1DF014C8C83AF251E908D1A0B1C8;
// System.Exception
struct Exception_t;
// System.Data.ExpressionNode
struct ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31;
// System.Data.ExpressionParser
struct ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311;
// System.Data.ForeignKeyConstraint
struct ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062;
// System.Data.ForeignKeyConstraintEnumerator
struct ForeignKeyConstraintEnumerator_t73CDA7DF702057B15267DED0938C77C1DAE3544F;
// System.Data.FunctionNode
struct FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762;
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// System.Collections.IComparer
struct IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.Collections.IEqualityComparer
struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
// System.Data.IFilter
struct IFilter_t58EBA348D3AE27E6DFA80A9076821C981199F36F;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// System.Globalization.ISimpleCollator
struct ISimpleCollator_t084383013F96378AFFD4540649E086C9C13BFF5B;
// System.ComponentModel.ISite
struct ISite_t4BB2A7E2B477FC6B1AF9D0554FF8B07204356E93;
// System.ComponentModel.ITypeDescriptorContext
struct ITypeDescriptorContext_t514D0B45A781ED18AB6A0DC6673A95B8359443F4;
// System.Data.Index
struct Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483;
// System.Data.InternalDataCollectionBase
struct InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2;
// System.Data.LikeNode
struct LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001;
// System.ComponentModel.ListChangedEventArgs
struct ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442;
// System.ComponentModel.ListChangedEventHandler
struct ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616;
// System.Data.LookupNode
struct LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598;
// System.ComponentModel.MarshalByValueComponent
struct MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.Data.MergeFailedEventHandler
struct MergeFailedEventHandler_t9EB4948FFEF2AC7BC45273146717EFDA9A2EB9A9;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Data.NameNode
struct NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05;
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// System.Data.OperatorInfo
struct OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054;
// System.Data.ParentForeignKeyConstraintEnumerator
struct ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6;
// System.ComponentModel.PropertyChangedEventHandler
struct PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA;
// System.Data.PropertyCollection
struct PropertyCollection_t531D3CA9714C3D7818C1B1C139A9C4F04B73EE7C;
// System.ComponentModel.PropertyDescriptor
struct PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381;
// System.ComponentModel.PropertyDescriptorCollection
struct PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE;
// System.Threading.ReaderWriterLockSlim
struct ReaderWriterLockSlim_t3BF29C18C9FC0EE07209EDD54D938EA473FB3906;
// System.Data.RecordManager
struct RecordManager_t5525269209BE5391607F8C811470AC2EC5C8FA4A;
// System.ComponentModel.ReferenceConverter
struct ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// System.Data.SimpleType
struct SimpleType_tE6F54AF1D35994BBDB2AEB808DB8C87AB7477D14;
// System.Globalization.SortVersion
struct SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.StringComparer
struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06;
// System.ComponentModel.StringConverter
struct StringConverter_t1AE794D42AE414C00F2443B76F3EA694C310FF1E;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// System.Type
struct Type_t;
// System.ComponentModel.TypeConverter
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C;
// System.Data.UnaryNode
struct UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE;
// System.Text.UnicodeEncoding
struct UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0;
// System.Data.UniqueConstraint
struct UniqueConstraint_tE48A79D2F7DE0EA4A3F1BF5BB322C383E60465F6;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// System.WeakReference
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E;
// System.Xml.Schema.XmlSchemaComplexType
struct XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0;
// System.Data.ZeroOpNode
struct ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8;
// System.Data.DataRelationCollection/DataTableRelationCollection
struct DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2;
// System.Data.DataRowCollection/DataRowTree
struct DataRowTree_tE2B5C209F0D2D3B72A2F747AEFD4F76CBDB92AAF;
// System.Data.DataView/DataRowReferenceComparer
struct DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8;
// System.Data.Index/IndexTree
struct IndexTree_t5A9D1B6E4C2AF3B18E6CC799F1A38063EAA53887;
IL2CPP_EXTERN_C RuntimeClass* ADP_t2C39CD1D5CEFC1B88FF6F7C7AD1916F0FD538CC0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EvaluateException_t78BD6A3F4B827B5CB5688268A536B3C304A6BC2C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Function_tAC32D286B7613834FFF024AD86D93B70554173BF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral0CB80266B2D8B0984D8B0A471F6D53947F6F7768;
IL2CPP_EXTERN_C String_t* _stringLiteral22273EFCB523F9EC3A2874FB4D0756F4842EF73A;
IL2CPP_EXTERN_C String_t* _stringLiteral2342ED095E8746444A44CFCD5D8ACA13F0E7EEF8;
IL2CPP_EXTERN_C String_t* _stringLiteral2382B971DAD288CA5D307A54F89DB13E13D34BB0;
IL2CPP_EXTERN_C String_t* _stringLiteral26BAE57743DA67DEBF4CF9952459BCC4719B674B;
IL2CPP_EXTERN_C String_t* _stringLiteral2B50A6D14BFFB74D7673D925725DF7E8C11896DC;
IL2CPP_EXTERN_C String_t* _stringLiteral356838F077E0EFF08C8521D68D34EE0EC98EDB73;
IL2CPP_EXTERN_C String_t* _stringLiteral3ECB8E1843C72C921E80AF7EBAA40BE59115F111;
IL2CPP_EXTERN_C String_t* _stringLiteral41DDD1C3888D4429A5AD5DEEF55A9BFC3584C766;
IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D;
IL2CPP_EXTERN_C String_t* _stringLiteral445AADBD1DC1F0B7B59D5C3003F14DD73F711022;
IL2CPP_EXTERN_C String_t* _stringLiteral4D3FEEE32A6412362EC594F4D333C76C71562782;
IL2CPP_EXTERN_C String_t* _stringLiteral53C764C67B1FE19B7A8675B1331C9F324A5F96F0;
IL2CPP_EXTERN_C String_t* _stringLiteral54F4AAE0436CBCC0163FCF662535D64F6E0BB00C;
IL2CPP_EXTERN_C String_t* _stringLiteral5A13679D1EC7694EE80074064C9FF6E5610D8A83;
IL2CPP_EXTERN_C String_t* _stringLiteral601D89C0BE0EE0C44684609DE432E87C4B1380B3;
IL2CPP_EXTERN_C String_t* _stringLiteral67AD968D4607368F59A66919DABAC119CCF8D3C6;
IL2CPP_EXTERN_C String_t* _stringLiteral6855F4EC54AF75D6CAC8881791FBD2C863F2C1C9;
IL2CPP_EXTERN_C String_t* _stringLiteral75DAF3DDC5264A4CB985E781D669336FFFC76920;
IL2CPP_EXTERN_C String_t* _stringLiteral83ECAC77570F654DDCDD0C3283840B70F8109951;
IL2CPP_EXTERN_C String_t* _stringLiteral8857C9610AB8A060809394F329727DC3E1734BF7;
IL2CPP_EXTERN_C String_t* _stringLiteral982FD14019FE2A8810D9B37E2E87BE76F94B62EB;
IL2CPP_EXTERN_C String_t* _stringLiteral9AB28FA68EC2026820265EFF3939926C9DB6B035;
IL2CPP_EXTERN_C String_t* _stringLiteralA50EF0B703D092CFA34A1E49E7FF1D8BD7900680;
IL2CPP_EXTERN_C String_t* _stringLiteralAB06ADD637EB1A63320B03887E8BFD04866F761F;
IL2CPP_EXTERN_C String_t* _stringLiteralAC771CA5803C3AC8125373C0B531CBFFF272EC8B;
IL2CPP_EXTERN_C String_t* _stringLiteralADCB172BBF8A9370C2FBB60FFDDB0A8D73AAB0DF;
IL2CPP_EXTERN_C String_t* _stringLiteralAEDA66DE1C9D82E25A7FC8C15BCFF5AFBB3E3D07;
IL2CPP_EXTERN_C String_t* _stringLiteralB4054C6E4E11B87959DDCCED1FDA757609E47F49;
IL2CPP_EXTERN_C String_t* _stringLiteralB67B89713DBBA1F8E99BD6A11AB7A77E12FD7DDA;
IL2CPP_EXTERN_C String_t* _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB;
IL2CPP_EXTERN_C String_t* _stringLiteralCB79D47CC56B4CA4A5403B7731340DEC22E7BEA9;
IL2CPP_EXTERN_C String_t* _stringLiteralCF8D28565CA0B4B55016CBB10E8FD8CFC99CB382;
IL2CPP_EXTERN_C String_t* _stringLiteralD0A7648EC84977B54FB6C829BDE9332137C57CED;
IL2CPP_EXTERN_C String_t* _stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDA4BE0F963380DB493604E9CA0B0B54F040F58C9;
IL2CPP_EXTERN_C String_t* _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F;
IL2CPP_EXTERN_C String_t* _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871;
IL2CPP_EXTERN_C String_t* _stringLiteralF271453569B2B16EEF0C91A97259AF0B2EB2C6FC;
IL2CPP_EXTERN_C String_t* _stringLiteralF39A9EB20C509355AA369C3621332104992F7075;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667;
IL2CPP_EXTERN_C String_t* _stringLiteralF59B8D72542CE7CA46EF3732C2A3A46BB5B8EF20;
IL2CPP_EXTERN_C String_t* _stringLiteralF782AB94300F8A81FA3356461A9FF8BBFD6CEEBA;
IL2CPP_EXTERN_C String_t* _stringLiteralF92877AB7E56F43730611455406925B55A392F49;
IL2CPP_EXTERN_C const RuntimeMethod* AggregateNode_Bind_m0D852A77581E4E33ACE9ADBECF695458D39DCF20_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AggregateNode_Eval_mB6C552DF55CD82720509EFDCD99437D8860421FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AggregateNode_Eval_mC95FABCA2D939D6238A5FD5F7D7DB0A10C9D7FF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AggregateNode__ctor_m17BD752374AEA6599A53DAE3114FBC1FA4EA7298_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisDataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_m2A49703C31898C24DBB845E50785807B9624E634_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryNode_Optimize_m77C3A8566B1FBBD0E4A18B93B38A89DBA7B807B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryNode_ResultSqlType_m50B087B54D7AD34C3771B7F9994A9AA825AF9EC6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryNode_ResultType_m4416FF1A35FF5D93EA117D614D280D808AED1FDF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF746EE443EAFA898B43983390F9AF6CBE4AF3B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE5FA32168047F1999B971C07A883164385908734_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m2EB458E05D438C75C7F06B31038832781860144B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m718893B6B36BADDCC09B48F8012725E6E3290D9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m32404E7D73A0E4C0184D32257009CA4A624F4A01_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisListChangedType_t50F7E1359B1B64CCB72B35EA42266BF90E79107A_m435AF3413637EA04D8216A4D1A9A8C774A3873FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisDataViewRowState_tE38561F1E9C47E76575D2912569A48AC9470665D_m7984C8D0468CC78020D359E51665098E7C0B1038_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisString_t_mE6693D84E598664B7BCD1C2216B645A7338B2CC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataExpression_Evaluate_m1B155E77721AF6F4DA817D4D810E06EBB5E84BE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataExpression_Invoke_m94A0AC8E63F16C5AA653E9DE519DC8EB24DFD785_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataExpression__ctor_mBCA81ACC369CF3945922CE1A14140CC534146F9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataTableCollection_IndexOf_mDE2C68896FFC497CFC0B8C199AF4F4FA67B69246_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataTableCollection_RegisterName_m0DD52F53E87B0B6A586D7B3B0669138DC2AAF23C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataTableCollection_get_Item_m993165A16E4DEDAF77DB419495AC48EC357903CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataTableCollection_get_Item_mA833EDEEAE51765547DD6502A19B17CC07253636_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataTableCollection_get_Item_mB57AD43C8CF93689B041D428FA0427272B7B2C3F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataViewListener_ChildRelationCollectionChanged_m704F85E82ED59E2344ADE70B62CA162FE3876A72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataViewListener_ColumnCollectionChanged_mEDABFC6CEB5A2ECEF8E1235EA487A77FB42BC307_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataViewListener_ParentRelationCollectionChanged_m29B3CC7EABFCD51DC30C312878D870CA9BA3489A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataViewSettingCollection_get_Item_m1D196B656E44AEFBDDB3BFE76F5AE0CAAD168E7C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataViewSettingCollection_set_Item_m00EEEE7945CA208212E7CCD9F57F7BEB5AC3C491_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_AddNew_mBDF305CCD050E889ACDB7559B3FEBCC676311DAB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_CheckOpen_m55D2AF52D6B8F58B5E9AE5A1218E6B72DD91FDCC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_CheckSort_m695B7CCB68A0F7AA4A7F60C131462F80824E3A07_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_CopyTo_m2E596C47A7D4D780931F8E65D3DE9E466444ECC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_CopyTo_m82053F50915E7ABA51D0DF4A72E19E16DDA5D466_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_Delete_m9724175AA44E8CB560E6BB5BADB6C8225CA0556E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_GetRecord_m22F0361A6942F721ADBAC2413AF3D61E7E0E648E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_GetRow_m77FAF760765CAB3D0A6C656FCA6056BB5C2044E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_OnListChanged_m73F0C5FC89DF6B7C789102E634CBE5BDA1436AE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_SetDataViewManager_m1B91C695741ACAEB75CA31E9DE4DB825D243D596_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_System_Collections_IList_Add_m0C55BFF4A10E839C0930052F4507D9B871F7C841_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_System_Collections_IList_Clear_m11850989CC6EB5ED9971A5CD2207184A06B7C20D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_System_Collections_IList_Insert_mAE59766A8D97FF52E1B972EA49BF4873DCF79B07_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_System_Collections_IList_Remove_m163A76E16AF7D2CE0EA9D8FDC4A2FE91FF049986_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataView_System_Collections_IList_set_Item_mF83F6FF36FD58B1CDACEF44C4761A840B073CA0C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultValueTypeConverter_ConvertTo_m5A8615C0EAAE995BF79A434518205A7DB1A27BA1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m5E3A035271CAE9A9CE6FEA33AEDB4068144FEC1C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m411AF3E7B18139A040C507E711CBD6639471ED88_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_mF8214D31031B8B278E01B1E971079356E0EFBC99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m31CF416326CE844F20810407046CB7ABD222D8A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m2CADC0D4395DCE0CA7F2074C76E7E992A672B716_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mC84A7D6E40F5394E04857E6C72F2B4C841D1CFF4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mF6961A0758A1E86DAA55E7D12F543C9DC65973F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_m59546C83F01C0149FDC1387278C8418672CE8AD4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m556957D0C784BE83E179BCFEDBE4585984DD2A25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m0FBB493C4EADB3AA57D09A4332D6E411B0FC07E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6DB0C08828C9EE44C7B28E0374E0C8E101782B74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m8570A6D3487D7C6791BA7BAE24196B50FE316111_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_ParseAggregateArgument_m06ABF8D32700EA9192953A4F5A23B262F0758898_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_ScanDate_m31C7FE966DFFE6F5C0A1DF38D578DED1FFE62D8F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_ScanName_mEFA0FBE1A3DFB35EA2E34D88F2E89DAC1EBE9A42_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_ScanString_m1DAB500B142D64646DD19FD71E8200F23A75FAC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m8E2A174A565FA8871770580501252B0A7DC65B34_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mBC48C78C362E58DF20F4A1B151AA1D37380DE29B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_mC7ECF3C7C9EB3347B47B645B57FD5DBF23394D09_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m824418EC4D37188845EB64F7948FC7C9CDF554A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m21F079D59F9CA562CE729468C726EDBA76744E6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m8A502D95BB2662F46C3F92088517C1E00690FEEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE8A6104EE32A7CF4C3168A3F7C4FD1AEE2295817_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9ABD8C2025D83ACC7FEA8E5BE103F60BE83BD06E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mD738A1974F4AE98C9B6146701996ABD2F0B17962_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m59541DD27A7650B8C1CF8BEE5229F1D86A6048EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mEBB86FFDACA9BA0D38A48D31630B564F89A089F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IBindingList_t755E8B6C1DD8843D8210B833913C0B5102BFCC03_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA;
struct DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4;
struct DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D;
struct DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8;
struct IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880;
struct PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2;
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.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>
struct Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_tD5C3BCF77238ED00A4481AFE2FDC3A28FF0538AC* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_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_t11649B82E95E700669BC010BE8DA706BA609B720* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_tDE54342999F9F6BA9EB4C6AE1B2837AFDB2DE133* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.Collections.Generic.Dictionary`2<System.String,System.Data.Index>
struct Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214 : public RuntimeObject
{
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
EntryU5BU5D_t0DF1DDB5B267FE44178086D4446EA3A12E4025D3* ____entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::_count
int32_t ____count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
int32_t ____freeList_3;
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
int32_t ____freeCount_4;
// System.Int32 System.Collections.Generic.Dictionary`2::_version
int32_t ____version_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_tF8213AC47121E92A72F2DF10A637B9C8FE0337A8* ____keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
ValueCollection_t08F5EE58CCE2AE36E66598316C77BC3CF04222A1* ____values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject* ____syncRoot_9;
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject
{
};
struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields
{
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value_0;
};
// System.Collections.Generic.List`1<System.Data.DataColumn>
struct List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Data.DataTable>
struct List_1_t88A4402AE9BC4CABD28BA59887541C46E4076C81 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t88A4402AE9BC4CABD28BA59887541C46E4076C81_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Data.DataViewListener>
struct List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
DataViewListenerU5BU5D_t9E1253C3BF8AECB929B7557B225F7F370E689FCF* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
DataViewListenerU5BU5D_t9E1253C3BF8AECB929B7557B225F7F370E689FCF* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
struct Il2CppArrayBounds;
// System.Collections.ArrayList
struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
{
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____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;
};
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
{
};
// System.Data.Constraint
struct Constraint_t0A8908A502F0A089936D95EF44F76F9628CFB50A : public RuntimeObject
{
// System.String System.Data.Constraint::_schemaName
String_t* ____schemaName_0;
// System.Boolean System.Data.Constraint::_inCollection
bool ____inCollection_1;
// System.Data.DataSet System.Data.Constraint::_dataSet
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ____dataSet_2;
// System.String System.Data.Constraint::_name
String_t* ____name_3;
// System.Data.PropertyCollection System.Data.Constraint::_extendedProperties
PropertyCollection_t531D3CA9714C3D7818C1B1C139A9C4F04B73EE7C* ____extendedProperties_4;
};
// System.Data.ConstraintEnumerator
struct ConstraintEnumerator_t449C9ABFA44F2D009B1672ACAE220DB0921BF2C0 : public RuntimeObject
{
// System.Collections.IEnumerator System.Data.ConstraintEnumerator::_tables
RuntimeObject* ____tables_0;
// System.Collections.IEnumerator System.Data.ConstraintEnumerator::_constraints
RuntimeObject* ____constraints_1;
// System.Data.Constraint System.Data.ConstraintEnumerator::_currentObject
Constraint_t0A8908A502F0A089936D95EF44F76F9628CFB50A* ____currentObject_2;
};
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
{
// 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_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___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_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___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_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
};
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
{
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___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_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___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_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_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_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___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_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.DBNull
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC : public RuntimeObject
{
};
struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields
{
// System.DBNull System.DBNull::Value
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0;
};
// System.Data.DataRowView
struct DataRowView_t51724505EADBB0C11EEA0252510644143191B23B : public RuntimeObject
{
// System.Data.DataView System.Data.DataRowView::_dataView
DataView_t882C19B1455AFCE770D60A43A690096801824A50* ____dataView_0;
// System.Data.DataRow System.Data.DataRowView::_row
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ____row_1;
// System.Boolean System.Data.DataRowView::_delayBeginEdit
bool ____delayBeginEdit_2;
// System.ComponentModel.PropertyChangedEventHandler System.Data.DataRowView::PropertyChanged
PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA* ___PropertyChanged_4;
};
struct DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_StaticFields
{
// System.ComponentModel.PropertyDescriptorCollection System.Data.DataRowView::s_zeroPropertyDescriptorCollection
PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* ___s_zeroPropertyDescriptorCollection_3;
};
// System.Data.DataViewListener
struct DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA : public RuntimeObject
{
// System.WeakReference System.Data.DataViewListener::_dvWeak
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* ____dvWeak_0;
// System.Data.DataTable System.Data.DataViewListener::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_1;
// System.Data.Index System.Data.DataViewListener::_index
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ____index_2;
// System.Int32 System.Data.DataViewListener::_objectID
int32_t ____objectID_3;
};
// System.Data.DataViewManagerListItemTypeDescriptor
struct DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1 : public RuntimeObject
{
// System.Data.DataViewManager System.Data.DataViewManagerListItemTypeDescriptor::_dataViewManager
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ____dataViewManager_0;
};
// System.Data.DataViewSettingCollection
struct DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73 : public RuntimeObject
{
// System.Data.DataViewManager System.Data.DataViewSettingCollection::_dataViewManager
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ____dataViewManager_0;
// System.Collections.Hashtable System.Data.DataViewSettingCollection::_list
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____list_1;
};
// System.EventArgs
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject
{
};
struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields
{
// System.EventArgs System.EventArgs::Empty
EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0;
};
// System.Diagnostics.Tracing.EventSource
struct EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25 : public RuntimeObject
{
};
// System.Data.ExpressionNode
struct ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31 : public RuntimeObject
{
// System.Data.DataTable System.Data.ExpressionNode::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_0;
};
// System.Data.InternalDataCollectionBase
struct InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2 : public RuntimeObject
{
};
struct InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_StaticFields
{
// System.ComponentModel.CollectionChangeEventArgs System.Data.InternalDataCollectionBase::s_refreshEventArgs
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___s_refreshEventArgs_0;
};
// System.ComponentModel.MarshalByValueComponent
struct MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA : public RuntimeObject
{
// System.ComponentModel.ISite System.ComponentModel.MarshalByValueComponent::_site
RuntimeObject* ____site_1;
// System.ComponentModel.EventHandlerList System.ComponentModel.MarshalByValueComponent::_events
EventHandlerList_t057D7531265C1DF014C8C83AF251E908D1A0B1C8* ____events_2;
};
struct MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA_StaticFields
{
// System.Object System.ComponentModel.MarshalByValueComponent::s_eventDisposed
RuntimeObject* ___s_eventDisposed_0;
};
// System.ComponentModel.MemberDescriptor
struct MemberDescriptor_t1CEA84A7BBAFDB04A9E6E23F2FBEED59F01172A7 : public RuntimeObject
{
// 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_tD55D3E17234E299E07B6071F31FEEB993C9AD8CA* ___attributeCollection_3;
// System.Attribute[] System.ComponentModel.MemberDescriptor::attributes
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* ___attributes_4;
// System.Attribute[] System.ComponentModel.MemberDescriptor::originalAttributes
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* ___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;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// System.ComponentModel.PropertyDescriptorCollection
struct PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE : public RuntimeObject
{
// 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_t773E52CC51A2ABE902F526B23CB417FBFF741321* ____properties_3;
// System.String[] System.ComponentModel.PropertyDescriptorCollection::_namedSort
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____namedSort_4;
// System.Collections.IComparer System.ComponentModel.PropertyDescriptorCollection::_comparer
RuntimeObject* ____comparer_5;
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::_propsOwned
bool ____propsOwned_6;
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::_needSort
bool ____needSort_7;
// System.Boolean System.ComponentModel.PropertyDescriptorCollection::_readOnly
bool ____readOnly_8;
// System.Object System.ComponentModel.PropertyDescriptorCollection::_internalSyncObject
RuntimeObject* ____internalSyncObject_9;
// System.Int32 System.ComponentModel.PropertyDescriptorCollection::<Count>k__BackingField
int32_t ___U3CCountU3Ek__BackingField_10;
};
struct PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE_StaticFields
{
// System.ComponentModel.PropertyDescriptorCollection System.ComponentModel.PropertyDescriptorCollection::Empty
PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* ___Empty_0;
};
// System.Data.RecordManager
struct RecordManager_t5525269209BE5391607F8C811470AC2EC5C8FA4A : public RuntimeObject
{
// System.Data.DataTable System.Data.RecordManager::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_0;
// System.Int32 System.Data.RecordManager::_lastFreeRecord
int32_t ____lastFreeRecord_1;
// System.Int32 System.Data.RecordManager::_minimumCapacity
int32_t ____minimumCapacity_2;
// System.Int32 System.Data.RecordManager::_recordCapacity
int32_t ____recordCapacity_3;
// System.Collections.Generic.List`1<System.Int32> System.Data.RecordManager::_freeRecordList
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ____freeRecordList_4;
// System.Data.DataRow[] System.Data.RecordManager::_rows
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* ____rows_5;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t* ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// System.Data.DataView/DataRowReferenceComparer
struct DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8 : public RuntimeObject
{
};
struct DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_StaticFields
{
// System.Data.DataView/DataRowReferenceComparer System.Data.DataView/DataRowReferenceComparer::s_default
DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* ___s_default_0;
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
{
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject* ___value_1;
};
// System.Collections.Generic.KeyValuePair`2<System.String,System.Data.Index>
struct KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8
{
// TKey System.Collections.Generic.KeyValuePair`2::key
String_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ___value_1;
};
// System.Data.RBTree`1/RBTreeEnumerator<System.Int32>
struct RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115
{
// System.Data.RBTree`1<K> System.Data.RBTree`1/RBTreeEnumerator::_tree
RBTree_1_t8713B62AA89A0F1666C324D828FF52CBB922114D* ____tree_0;
// System.Int32 System.Data.RBTree`1/RBTreeEnumerator::_version
int32_t ____version_1;
// System.Int32 System.Data.RBTree`1/RBTreeEnumerator::_index
int32_t ____index_2;
// System.Int32 System.Data.RBTree`1/RBTreeEnumerator::_mainTreeNodeId
int32_t ____mainTreeNodeId_3;
// K System.Data.RBTree`1/RBTreeEnumerator::_current
int32_t ____current_4;
};
// System.Data.BinaryNode
struct BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434 : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.Int32 System.Data.BinaryNode::_op
int32_t ____op_1;
// System.Data.ExpressionNode System.Data.BinaryNode::_left
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ____left_2;
// System.Data.ExpressionNode System.Data.BinaryNode::_right
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ____right_3;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// System.Data.ConstNode
struct ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426 : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.Object System.Data.ConstNode::_val
RuntimeObject* ____val_1;
};
// System.Data.DataColumnCollection
struct DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E : public InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2
{
// System.Data.DataTable System.Data.DataColumnCollection::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_1;
// System.Collections.ArrayList System.Data.DataColumnCollection::_list
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_2;
// System.Int32 System.Data.DataColumnCollection::_defaultNameIndex
int32_t ____defaultNameIndex_3;
// System.Data.DataColumn[] System.Data.DataColumnCollection::_delayedAddRangeColumns
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____delayedAddRangeColumns_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Data.DataColumn> System.Data.DataColumnCollection::_columnFromName
Dictionary_2_tA1C46A4AE8BF6F61CE13FCB4610037808EA8AB66* ____columnFromName_5;
// System.Boolean System.Data.DataColumnCollection::_fInClear
bool ____fInClear_6;
// System.Data.DataColumn[] System.Data.DataColumnCollection::_columnsImplementingIChangeTracking
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____columnsImplementingIChangeTracking_7;
// System.Int32 System.Data.DataColumnCollection::_nColumnsImplementingIChangeTracking
int32_t ____nColumnsImplementingIChangeTracking_8;
// System.Int32 System.Data.DataColumnCollection::_nColumnsImplementingIRevertibleChangeTracking
int32_t ____nColumnsImplementingIRevertibleChangeTracking_9;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataColumnCollection::CollectionChanged
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___CollectionChanged_10;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataColumnCollection::CollectionChanging
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___CollectionChanging_11;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataColumnCollection::ColumnPropertyChanged
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___ColumnPropertyChanged_12;
};
// System.Data.DataCommonEventSource
struct DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE : public EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25
{
};
struct DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields
{
// System.Data.DataCommonEventSource System.Data.DataCommonEventSource::Log
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* ___Log_0;
// System.Int64 System.Data.DataCommonEventSource::s_nextScopeId
int64_t ___s_nextScopeId_1;
};
// System.Data.DataKey
struct DataKey_tC6DF14FCD651ACE82D9C872CFC449847B000F73A
{
// System.Data.DataColumn[] System.Data.DataKey::_columns
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____columns_0;
};
// Native definition for P/Invoke marshalling of System.Data.DataKey
struct DataKey_tC6DF14FCD651ACE82D9C872CFC449847B000F73A_marshaled_pinvoke
{
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____columns_0;
};
// Native definition for COM marshalling of System.Data.DataKey
struct DataKey_tC6DF14FCD651ACE82D9C872CFC449847B000F73A_marshaled_com
{
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____columns_0;
};
// System.Data.DataRelationCollection
struct DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956 : public InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2
{
// System.Data.DataRelation System.Data.DataRelationCollection::_inTransition
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ____inTransition_1;
// System.Int32 System.Data.DataRelationCollection::_defaultNameIndex
int32_t ____defaultNameIndex_2;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataRelationCollection::_onCollectionChangedDelegate
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ____onCollectionChangedDelegate_3;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataRelationCollection::_onCollectionChangingDelegate
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ____onCollectionChangingDelegate_4;
// System.Int32 System.Data.DataRelationCollection::_objectID
int32_t ____objectID_6;
};
struct DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956_StaticFields
{
// System.Int32 System.Data.DataRelationCollection::s_objectTypeCount
int32_t ___s_objectTypeCount_5;
};
// System.Data.DataRowCollection
struct DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738 : public InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2
{
// System.Data.DataTable System.Data.DataRowCollection::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_1;
// System.Data.DataRowCollection/DataRowTree System.Data.DataRowCollection::_list
DataRowTree_tE2B5C209F0D2D3B72A2F747AEFD4F76CBDB92AAF* ____list_2;
// System.Int32 System.Data.DataRowCollection::_nullInList
int32_t ____nullInList_3;
};
// System.Data.DataTableClearEventArgs
struct DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Data.DataTable System.Data.DataTableClearEventArgs::<Table>k__BackingField
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___U3CTableU3Ek__BackingField_1;
};
// System.Data.DataTableCollection
struct DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997 : public InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2
{
// System.Data.DataSet System.Data.DataTableCollection::_dataSet
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ____dataSet_1;
// System.Collections.ArrayList System.Data.DataTableCollection::_list
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list_2;
// System.Int32 System.Data.DataTableCollection::_defaultNameIndex
int32_t ____defaultNameIndex_3;
// System.Data.DataTable[] System.Data.DataTableCollection::_delayedAddRangeTables
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* ____delayedAddRangeTables_4;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataTableCollection::_onCollectionChangedDelegate
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ____onCollectionChangedDelegate_5;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataTableCollection::_onCollectionChangingDelegate
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ____onCollectionChangingDelegate_6;
// System.Int32 System.Data.DataTableCollection::_objectID
int32_t ____objectID_8;
};
struct DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997_StaticFields
{
// System.Int32 System.Data.DataTableCollection::s_objectTypeCount
int32_t ___s_objectTypeCount_7;
};
// System.Data.DataTableNewRowEventArgs
struct DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.Data.DataRow System.Data.DataTableNewRowEventArgs::<Row>k__BackingField
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___U3CRowU3Ek__BackingField_1;
};
// System.Data.DataViewManager
struct DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8 : public MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA
{
// System.Data.DataViewSettingCollection System.Data.DataViewManager::_dataViewSettingsCollection
DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* ____dataViewSettingsCollection_3;
// System.Int32 System.Data.DataViewManager::_nViews
int32_t ____nViews_4;
};
struct DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8_StaticFields
{
// System.NotSupportedException System.Data.DataViewManager::s_notSupported
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* ___s_notSupported_5;
};
// System.DateTime
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
{
// System.UInt64 System.DateTime::_dateData
uint64_t ____dateData_46;
};
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
{
// System.Int32[] System.DateTime::s_daysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
// System.Int32[] System.DateTime::s_daysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
// System.DateTime System.DateTime::MinValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
// System.DateTime System.DateTime::MaxValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
// System.DateTime System.DateTime::UnixEpoch
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
};
// System.Decimal
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Decimal::flags
int32_t ___flags_8;
};
#pragma pack(pop, tp)
struct
{
int32_t ___flags_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hi_9_OffsetPadding[4];
// System.Int32 System.Decimal::hi
int32_t ___hi_9;
};
#pragma pack(pop, tp)
struct
{
char ___hi_9_OffsetPadding_forAlignmentOnly[4];
int32_t ___hi_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lo_10_OffsetPadding[8];
// System.Int32 System.Decimal::lo
int32_t ___lo_10;
};
#pragma pack(pop, tp)
struct
{
char ___lo_10_OffsetPadding_forAlignmentOnly[8];
int32_t ___lo_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___mid_11_OffsetPadding[12];
// System.Int32 System.Decimal::mid
int32_t ___mid_11;
};
#pragma pack(pop, tp)
struct
{
char ___mid_11_OffsetPadding_forAlignmentOnly[12];
int32_t ___mid_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___ulomidLE_12_OffsetPadding[8];
// System.UInt64 System.Decimal::ulomidLE
uint64_t ___ulomidLE_12;
};
#pragma pack(pop, tp)
struct
{
char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8];
uint64_t ___ulomidLE_12_forAlignmentOnly;
};
};
};
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
{
// System.Decimal System.Decimal::Zero
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3;
// System.Decimal System.Decimal::One
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4;
// System.Decimal System.Decimal::MinusOne
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5;
// System.Decimal System.Decimal::MaxValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6;
// System.Decimal System.Decimal::MinValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// System.Data.ForeignKeyConstraintEnumerator
struct ForeignKeyConstraintEnumerator_t73CDA7DF702057B15267DED0938C77C1DAE3544F : public ConstraintEnumerator_t449C9ABFA44F2D009B1672ACAE220DB0921BF2C0
{
};
// System.Data.FunctionNode
struct FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762 : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.String System.Data.FunctionNode::_name
String_t* ____name_1;
// System.Int32 System.Data.FunctionNode::_info
int32_t ____info_2;
// System.Int32 System.Data.FunctionNode::_argumentCount
int32_t ____argumentCount_3;
// System.Data.ExpressionNode[] System.Data.FunctionNode::_arguments
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* ____arguments_4;
};
struct FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_StaticFields
{
// System.Data.Function[] System.Data.FunctionNode::s_funcs
FunctionU5BU5D_t595AABF41FEE9352AA92388D09809A6DA97479FB* ___s_funcs_5;
};
// System.Guid
struct Guid_t
{
// 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;
};
struct Guid_t_StaticFields
{
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
};
// System.Data.IndexField
struct IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795
{
// System.Data.DataColumn System.Data.IndexField::Column
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___Column_0;
// System.Boolean System.Data.IndexField::IsDescending
bool ___IsDescending_1;
};
// Native definition for P/Invoke marshalling of System.Data.IndexField
struct IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795_marshaled_pinvoke
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___Column_0;
int32_t ___IsDescending_1;
};
// Native definition for COM marshalling of System.Data.IndexField
struct IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795_marshaled_com
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___Column_0;
int32_t ___IsDescending_1;
};
// System.Int16
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
{
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// System.Data.LookupNode
struct LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598 : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.String System.Data.LookupNode::_relationName
String_t* ____relationName_1;
// System.String System.Data.LookupNode::_columnName
String_t* ____columnName_2;
// System.Data.DataColumn System.Data.LookupNode::_column
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ____column_3;
// System.Data.DataRelation System.Data.LookupNode::_relation
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ____relation_4;
};
// System.Data.NameNode
struct NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05 : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.String System.Data.NameNode::_name
String_t* ____name_1;
// System.Boolean System.Data.NameNode::_found
bool ____found_2;
// System.Data.DataColumn System.Data.NameNode::_column
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ____column_3;
};
// System.ComponentModel.PropertyDescriptor
struct PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381 : public MemberDescriptor_t1CEA84A7BBAFDB04A9E6E23F2FBEED59F01172A7
{
// System.ComponentModel.TypeConverter System.ComponentModel.PropertyDescriptor::_converter
TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* ____converter_12;
// System.Collections.Hashtable System.ComponentModel.PropertyDescriptor::_valueChangedHandlers
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____valueChangedHandlers_13;
// System.Object[] System.ComponentModel.PropertyDescriptor::_editors
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____editors_14;
// System.Type[] System.ComponentModel.PropertyDescriptor::_editorTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ____editorTypes_15;
// System.Int32 System.ComponentModel.PropertyDescriptor::_editorCount
int32_t ____editorCount_16;
};
// System.Data.Range
struct Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB
{
// System.Int32 System.Data.Range::_min
int32_t ____min_0;
// System.Int32 System.Data.Range::_max
int32_t ____max_1;
// System.Boolean System.Data.Range::_isNotNull
bool ____isNotNull_2;
};
// Native definition for P/Invoke marshalling of System.Data.Range
struct Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB_marshaled_pinvoke
{
int32_t ____min_0;
int32_t ____max_1;
int32_t ____isNotNull_2;
};
// Native definition for COM marshalling of System.Data.Range
struct Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB_marshaled_com
{
int32_t ____min_0;
int32_t ____max_1;
int32_t ____isNotNull_2;
};
// System.SByte
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
{
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// System.Data.SqlTypes.SqlBinary
struct SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347
{
// System.Byte[] System.Data.SqlTypes.SqlBinary::_value
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____value_0;
};
struct SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347_StaticFields
{
// System.Data.SqlTypes.SqlBinary System.Data.SqlTypes.SqlBinary::Null
SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347 ___Null_1;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlBinary
struct SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ____value_0;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlBinary
struct SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347_marshaled_com
{
Il2CppSafeArray/*NONE*/* ____value_0;
};
// System.Data.SqlTypes.SqlBoolean
struct SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7
{
// System.Byte System.Data.SqlTypes.SqlBoolean::m_value
uint8_t ___m_value_0;
};
struct SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_StaticFields
{
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::True
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 ___True_1;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::False
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 ___False_2;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::Null
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 ___Null_3;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::Zero
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 ___Zero_4;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::One
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 ___One_5;
};
// System.Data.SqlTypes.SqlByte
struct SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46
{
// System.Boolean System.Data.SqlTypes.SqlByte::m_fNotNull
bool ___m_fNotNull_0;
// System.Byte System.Data.SqlTypes.SqlByte::m_value
uint8_t ___m_value_1;
};
struct SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_StaticFields
{
// System.Int32 System.Data.SqlTypes.SqlByte::s_iBitNotByteMax
int32_t ___s_iBitNotByteMax_2;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::Null
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___Null_3;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::Zero
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___Zero_4;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::MinValue
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___MinValue_5;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::MaxValue
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___MaxValue_6;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlByte
struct SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
uint8_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlByte
struct SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_marshaled_com
{
int32_t ___m_fNotNull_0;
uint8_t ___m_value_1;
};
// System.Data.SqlTypes.SqlDecimal
struct SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406
{
// System.Byte System.Data.SqlTypes.SqlDecimal::_bStatus
uint8_t ____bStatus_0;
// System.Byte System.Data.SqlTypes.SqlDecimal::_bLen
uint8_t ____bLen_1;
// System.Byte System.Data.SqlTypes.SqlDecimal::_bPrec
uint8_t ____bPrec_2;
// System.Byte System.Data.SqlTypes.SqlDecimal::_bScale
uint8_t ____bScale_3;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data1
uint32_t ____data1_4;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data2
uint32_t ____data2_5;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data3
uint32_t ____data3_6;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data4
uint32_t ____data4_7;
};
struct SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_StaticFields
{
// System.Byte System.Data.SqlTypes.SqlDecimal::s_NUMERIC_MAX_PRECISION
uint8_t ___s_NUMERIC_MAX_PRECISION_8;
// System.Byte System.Data.SqlTypes.SqlDecimal::MaxPrecision
uint8_t ___MaxPrecision_9;
// System.Byte System.Data.SqlTypes.SqlDecimal::MaxScale
uint8_t ___MaxScale_10;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bNullMask
uint8_t ___s_bNullMask_11;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bIsNull
uint8_t ___s_bIsNull_12;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bNotNull
uint8_t ___s_bNotNull_13;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bReverseNullMask
uint8_t ___s_bReverseNullMask_14;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bSignMask
uint8_t ___s_bSignMask_15;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bPositive
uint8_t ___s_bPositive_16;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bNegative
uint8_t ___s_bNegative_17;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bReverseSignMask
uint8_t ___s_bReverseSignMask_18;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_uiZero
uint32_t ___s_uiZero_19;
// System.Int32 System.Data.SqlTypes.SqlDecimal::s_cNumeMax
int32_t ___s_cNumeMax_20;
// System.Int64 System.Data.SqlTypes.SqlDecimal::s_lInt32Base
int64_t ___s_lInt32Base_21;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_ulInt32Base
uint64_t ___s_ulInt32Base_22;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_ulInt32BaseForMod
uint64_t ___s_ulInt32BaseForMod_23;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_llMax
uint64_t ___s_llMax_24;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulBase10
uint32_t ___s_ulBase10_25;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DUINT_BASE
double ___s_DUINT_BASE_26;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DUINT_BASE2
double ___s_DUINT_BASE2_27;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DUINT_BASE3
double ___s_DUINT_BASE3_28;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DMAX_NUME
double ___s_DMAX_NUME_29;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_DBL_DIG
uint32_t ___s_DBL_DIG_30;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_cNumeDivScaleMin
uint8_t ___s_cNumeDivScaleMin_31;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_rgulShiftBase
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___s_rgulShiftBase_32;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersLo
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___s_decimalHelpersLo_33;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersMid
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___s_decimalHelpersMid_34;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersHi
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___s_decimalHelpersHi_35;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersHiHi
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___s_decimalHelpersHiHi_36;
// System.Byte[] System.Data.SqlTypes.SqlDecimal::s_rgCLenFromPrec
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_rgCLenFromPrec_37;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT1
uint32_t ___s_ulT1_38;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT2
uint32_t ___s_ulT2_39;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT3
uint32_t ___s_ulT3_40;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT4
uint32_t ___s_ulT4_41;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT5
uint32_t ___s_ulT5_42;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT6
uint32_t ___s_ulT6_43;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT7
uint32_t ___s_ulT7_44;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT8
uint32_t ___s_ulT8_45;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT9
uint32_t ___s_ulT9_46;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT10
uint64_t ___s_dwlT10_47;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT11
uint64_t ___s_dwlT11_48;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT12
uint64_t ___s_dwlT12_49;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT13
uint64_t ___s_dwlT13_50;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT14
uint64_t ___s_dwlT14_51;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT15
uint64_t ___s_dwlT15_52;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT16
uint64_t ___s_dwlT16_53;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT17
uint64_t ___s_dwlT17_54;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT18
uint64_t ___s_dwlT18_55;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT19
uint64_t ___s_dwlT19_56;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::Null
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___Null_57;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::MinValue
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___MinValue_58;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::MaxValue
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___MaxValue_59;
};
// System.Data.SqlTypes.SqlDouble
struct SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98
{
// System.Boolean System.Data.SqlTypes.SqlDouble::m_fNotNull
bool ___m_fNotNull_0;
// System.Double System.Data.SqlTypes.SqlDouble::m_value
double ___m_value_1;
};
struct SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_StaticFields
{
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::Null
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___Null_2;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::Zero
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___Zero_3;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::MinValue
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___MinValue_4;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::MaxValue
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___MaxValue_5;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlDouble
struct SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
double ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlDouble
struct SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_marshaled_com
{
int32_t ___m_fNotNull_0;
double ___m_value_1;
};
// System.Data.SqlTypes.SqlGuid
struct SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7
{
// System.Byte[] System.Data.SqlTypes.SqlGuid::m_value
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_value_2;
};
struct SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7_StaticFields
{
// System.Int32 System.Data.SqlTypes.SqlGuid::s_sizeOfGuid
int32_t ___s_sizeOfGuid_0;
// System.Int32[] System.Data.SqlTypes.SqlGuid::s_rgiGuidOrder
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_rgiGuidOrder_1;
// System.Data.SqlTypes.SqlGuid System.Data.SqlTypes.SqlGuid::Null
SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7 ___Null_3;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlGuid
struct SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ___m_value_2;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlGuid
struct SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7_marshaled_com
{
Il2CppSafeArray/*NONE*/* ___m_value_2;
};
// System.Data.SqlTypes.SqlInt16
struct SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B
{
// System.Boolean System.Data.SqlTypes.SqlInt16::m_fNotNull
bool ___m_fNotNull_0;
// System.Int16 System.Data.SqlTypes.SqlInt16::m_value
int16_t ___m_value_1;
};
struct SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_StaticFields
{
// System.Int32 System.Data.SqlTypes.SqlInt16::s_MASKI2
int32_t ___s_MASKI2_2;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::Null
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___Null_3;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::Zero
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___Zero_4;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::MinValue
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___MinValue_5;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::MaxValue
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___MaxValue_6;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlInt16
struct SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int16_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlInt16
struct SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_marshaled_com
{
int32_t ___m_fNotNull_0;
int16_t ___m_value_1;
};
// System.Data.SqlTypes.SqlInt32
struct SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152
{
// System.Boolean System.Data.SqlTypes.SqlInt32::m_fNotNull
bool ___m_fNotNull_0;
// System.Int32 System.Data.SqlTypes.SqlInt32::m_value
int32_t ___m_value_1;
};
struct SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_StaticFields
{
// System.Int64 System.Data.SqlTypes.SqlInt32::s_iIntMin
int64_t ___s_iIntMin_2;
// System.Int64 System.Data.SqlTypes.SqlInt32::s_lBitNotIntMax
int64_t ___s_lBitNotIntMax_3;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::Null
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___Null_4;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::Zero
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___Zero_5;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::MinValue
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___MinValue_6;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::MaxValue
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___MaxValue_7;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlInt32
struct SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int32_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlInt32
struct SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_marshaled_com
{
int32_t ___m_fNotNull_0;
int32_t ___m_value_1;
};
// System.Data.SqlTypes.SqlInt64
struct SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272
{
// System.Boolean System.Data.SqlTypes.SqlInt64::m_fNotNull
bool ___m_fNotNull_0;
// System.Int64 System.Data.SqlTypes.SqlInt64::m_value
int64_t ___m_value_1;
};
struct SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_StaticFields
{
// System.Int64 System.Data.SqlTypes.SqlInt64::s_lLowIntMask
int64_t ___s_lLowIntMask_2;
// System.Int64 System.Data.SqlTypes.SqlInt64::s_lHighIntMask
int64_t ___s_lHighIntMask_3;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::Null
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___Null_4;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::Zero
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___Zero_5;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::MinValue
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___MinValue_6;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::MaxValue
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___MaxValue_7;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlInt64
struct SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int64_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlInt64
struct SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_marshaled_com
{
int32_t ___m_fNotNull_0;
int64_t ___m_value_1;
};
// System.Data.SqlTypes.SqlMoney
struct SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB
{
// System.Boolean System.Data.SqlTypes.SqlMoney::_fNotNull
bool ____fNotNull_0;
// System.Int64 System.Data.SqlTypes.SqlMoney::_value
int64_t ____value_1;
};
struct SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_StaticFields
{
// System.Int32 System.Data.SqlTypes.SqlMoney::s_iMoneyScale
int32_t ___s_iMoneyScale_2;
// System.Int64 System.Data.SqlTypes.SqlMoney::s_lTickBase
int64_t ___s_lTickBase_3;
// System.Double System.Data.SqlTypes.SqlMoney::s_dTickBase
double ___s_dTickBase_4;
// System.Int64 System.Data.SqlTypes.SqlMoney::s_minLong
int64_t ___s_minLong_5;
// System.Int64 System.Data.SqlTypes.SqlMoney::s_maxLong
int64_t ___s_maxLong_6;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::Null
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___Null_7;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::Zero
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___Zero_8;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::MinValue
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___MinValue_9;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::MaxValue
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___MaxValue_10;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlMoney
struct SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_marshaled_pinvoke
{
int32_t ____fNotNull_0;
int64_t ____value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlMoney
struct SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_marshaled_com
{
int32_t ____fNotNull_0;
int64_t ____value_1;
};
// System.Data.SqlTypes.SqlSingle
struct SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767
{
// System.Boolean System.Data.SqlTypes.SqlSingle::_fNotNull
bool ____fNotNull_0;
// System.Single System.Data.SqlTypes.SqlSingle::_value
float ____value_1;
};
struct SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_StaticFields
{
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::Null
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___Null_2;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::Zero
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___Zero_3;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::MinValue
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___MinValue_4;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::MaxValue
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___MaxValue_5;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlSingle
struct SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_marshaled_pinvoke
{
int32_t ____fNotNull_0;
float ____value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlSingle
struct SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_marshaled_com
{
int32_t ____fNotNull_0;
float ____value_1;
};
// System.TimeSpan
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
{
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
};
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
{
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.UInt64
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
{
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
};
// System.Data.UnaryNode
struct UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.Int32 System.Data.UnaryNode::_op
int32_t ____op_1;
// System.Data.ExpressionNode System.Data.UnaryNode::_right
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ____right_2;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// System.Data.ZeroOpNode
struct ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8 : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.Int32 System.Data.ZeroOpNode::_op
int32_t ____op_1;
};
// System.Data.DataTable/DSRowDiffIdUsageSection
struct DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A
{
// System.Data.DataSet System.Data.DataTable/DSRowDiffIdUsageSection::_targetDS
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ____targetDS_0;
};
// Native definition for P/Invoke marshalling of System.Data.DataTable/DSRowDiffIdUsageSection
struct DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_pinvoke
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ____targetDS_0;
};
// Native definition for COM marshalling of System.Data.DataTable/DSRowDiffIdUsageSection
struct DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_com
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ____targetDS_0;
};
// System.Data.DataTable/RowDiffIdUsageSection
struct RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D
{
// System.Data.DataTable System.Data.DataTable/RowDiffIdUsageSection::_targetTable
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____targetTable_0;
};
// Native definition for P/Invoke marshalling of System.Data.DataTable/RowDiffIdUsageSection
struct RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_pinvoke
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____targetTable_0;
};
// Native definition for COM marshalling of System.Data.DataTable/RowDiffIdUsageSection
struct RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_com
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____targetTable_0;
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
struct Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
int32_t ____index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
int32_t ____getEnumeratorRetType_4;
};
// System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.Data.Index>
struct Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC
{
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* ____dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
int32_t ____index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8 ____current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
int32_t ____getEnumeratorRetType_4;
};
// System.Data.AcceptRejectRule
struct AcceptRejectRule_tF12246B228F067806DD94C99BE2B96806B2358A4
{
// System.Int32 System.Data.AcceptRejectRule::value__
int32_t ___value___2;
};
// System.Data.Aggregate
struct Aggregate_tA74EFBD0A29B9970DAC5B2E8D209DD048208DBCB
{
// System.Int32 System.Data.Aggregate::value__
int32_t ___value___2;
};
// System.Data.AggregateType
struct AggregateType_t1B35F8B556080BFE0E333FB26BB2C48B1670151A
{
// System.Int32 System.Data.AggregateType::value__
int32_t ___value___2;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// System.Data.ChildForeignKeyConstraintEnumerator
struct ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E : public ForeignKeyConstraintEnumerator_t73CDA7DF702057B15267DED0938C77C1DAE3544F
{
// System.Data.DataTable System.Data.ChildForeignKeyConstraintEnumerator::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_3;
};
// System.ComponentModel.CollectionChangeAction
struct CollectionChangeAction_tC540428CF11C3AD262589157A33A2DF584475CEB
{
// System.Int32 System.ComponentModel.CollectionChangeAction::value__
int32_t ___value___2;
};
// System.Globalization.CompareOptions
struct CompareOptions_tE5E7275E1FCBD5F8F3B53CC0038A11CABE120B00
{
// System.Int32 System.Globalization.CompareOptions::value__
int32_t ___value___2;
};
// System.Data.DataColumnPropertyDescriptor
struct DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3 : public PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381
{
// System.Data.DataColumn System.Data.DataColumnPropertyDescriptor::<Column>k__BackingField
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___U3CColumnU3Ek__BackingField_17;
};
// System.Data.DataRelation
struct DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656 : public RuntimeObject
{
// System.Data.DataSet System.Data.DataRelation::_dataSet
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ____dataSet_0;
// System.Data.PropertyCollection System.Data.DataRelation::_extendedProperties
PropertyCollection_t531D3CA9714C3D7818C1B1C139A9C4F04B73EE7C* ____extendedProperties_1;
// System.String System.Data.DataRelation::_relationName
String_t* ____relationName_2;
// System.Data.DataKey System.Data.DataRelation::_childKey
DataKey_tC6DF14FCD651ACE82D9C872CFC449847B000F73A ____childKey_3;
// System.Data.DataKey System.Data.DataRelation::_parentKey
DataKey_tC6DF14FCD651ACE82D9C872CFC449847B000F73A ____parentKey_4;
// System.Data.UniqueConstraint System.Data.DataRelation::_parentKeyConstraint
UniqueConstraint_tE48A79D2F7DE0EA4A3F1BF5BB322C383E60465F6* ____parentKeyConstraint_5;
// System.Data.ForeignKeyConstraint System.Data.DataRelation::_childKeyConstraint
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* ____childKeyConstraint_6;
// System.String[] System.Data.DataRelation::_parentColumnNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____parentColumnNames_7;
// System.String[] System.Data.DataRelation::_childColumnNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____childColumnNames_8;
// System.String System.Data.DataRelation::_parentTableName
String_t* ____parentTableName_9;
// System.String System.Data.DataRelation::_childTableName
String_t* ____childTableName_10;
// System.String System.Data.DataRelation::_parentTableNamespace
String_t* ____parentTableNamespace_11;
// System.String System.Data.DataRelation::_childTableNamespace
String_t* ____childTableNamespace_12;
// System.Boolean System.Data.DataRelation::_nested
bool ____nested_13;
// System.Boolean System.Data.DataRelation::_createConstraints
bool ____createConstraints_14;
// System.Boolean System.Data.DataRelation::_checkMultipleNested
bool ____checkMultipleNested_15;
// System.Int32 System.Data.DataRelation::_objectID
int32_t ____objectID_17;
// System.ComponentModel.PropertyChangedEventHandler System.Data.DataRelation::PropertyChanging
PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA* ___PropertyChanging_18;
};
struct DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_StaticFields
{
// System.Int32 System.Data.DataRelation::s_objectTypeCount
int32_t ___s_objectTypeCount_16;
};
// System.Data.DataRelationPropertyDescriptor
struct DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9 : public PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381
{
// System.Data.DataRelation System.Data.DataRelationPropertyDescriptor::<Relation>k__BackingField
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ___U3CRelationU3Ek__BackingField_17;
};
// System.Data.DataRowAction
struct DataRowAction_t7CE9C2C4004DB1ED67D09E599E81B6F9F44B3441
{
// System.Int32 System.Data.DataRowAction::value__
int32_t ___value___2;
};
// System.Data.DataRowState
struct DataRowState_tFD6AD6066A21157B16DC25585CF6F365BFA704FE
{
// System.Int32 System.Data.DataRowState::value__
int32_t ___value___2;
};
// System.Data.DataRowVersion
struct DataRowVersion_t18719565B05A4F39157C13409A7565BC9CAFB760
{
// System.Int32 System.Data.DataRowVersion::value__
int32_t ___value___2;
};
// System.Data.DataSetDateTime
struct DataSetDateTime_t68B7E4D03CA1EE593A06FB6FE63EC0FB84B9C52D
{
// System.Int32 System.Data.DataSetDateTime::value__
int32_t ___value___2;
};
// System.Data.DataTablePropertyDescriptor
struct DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860 : public PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381
{
// System.Data.DataTable System.Data.DataTablePropertyDescriptor::<Table>k__BackingField
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___U3CTableU3Ek__BackingField_17;
};
// System.Data.DataViewRowState
struct DataViewRowState_tE38561F1E9C47E76575D2912569A48AC9470665D
{
// System.Int32 System.Data.DataViewRowState::value__
int32_t ___value___2;
};
// System.DateTimeOffset
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4
{
// System.DateTime System.DateTimeOffset::_dateTime
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateTime_3;
// System.Int16 System.DateTimeOffset::_offsetMinutes
int16_t ____offsetMinutes_4;
};
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields
{
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MaxValue_1;
// System.DateTimeOffset System.DateTimeOffset::UnixEpoch
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___UnixEpoch_2;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// 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.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// 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;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// 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;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// 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_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.Data.FunctionId
struct FunctionId_t60FB52DDCFB1B0EC98D1950C863E8E6CD5BE036D
{
// System.Int32 System.Data.FunctionId::value__
int32_t ___value___2;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
{
// System.IntPtr System.Runtime.InteropServices.GCHandle::handle
intptr_t ___handle_0;
};
// System.Collections.Hashtable
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject
{
// System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets
bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____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;
};
struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields
{
// System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Hashtable::s_serializationInfoTable
ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21;
};
// System.Int32Enum
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
{
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
};
// System.Data.LikeNode
struct LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001 : public BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434
{
// System.Int32 System.Data.LikeNode::_kind
int32_t ____kind_4;
// System.String System.Data.LikeNode::_pattern
String_t* ____pattern_5;
};
// System.ComponentModel.ListChangedType
struct ListChangedType_t50F7E1359B1B64CCB72B35EA42266BF90E79107A
{
// System.Int32 System.ComponentModel.ListChangedType::value__
int32_t ___value___2;
};
// System.ComponentModel.ListSortDirection
struct ListSortDirection_t47106344C4119D73CD1460F6654BB7570AD26CF9
{
// System.Int32 System.ComponentModel.ListSortDirection::value__
int32_t ___value___2;
};
// System.Data.MappingType
struct MappingType_tFE999EDF9A825E195ECA2E4F116F94A064DDA4CE
{
// System.Int32 System.Data.MappingType::value__
int32_t ___value___2;
};
// System.Data.Nodes
struct Nodes_tDD6444F04501A1EC6ABEB98CC993A229FC9556CB
{
// System.Int32 System.Data.Nodes::value__
int32_t ___value___2;
};
// System.Globalization.NumberStyles
struct NumberStyles_t567C6CBC2A2B5B5A2C43B2855D158949984A810C
{
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
};
// System.Data.ParentForeignKeyConstraintEnumerator
struct ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6 : public ForeignKeyConstraintEnumerator_t73CDA7DF702057B15267DED0938C77C1DAE3544F
{
// System.Data.DataTable System.Data.ParentForeignKeyConstraintEnumerator::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_3;
};
// System.Data.Rule
struct Rule_tF9D87AEB7CA6F92839AE33888FB1176BCAFDA39D
{
// System.Int32 System.Data.Rule::value__
int32_t ___value___2;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// System.Data.SerializationFormat
struct SerializationFormat_t8DE772A549550C2629CA1B299B732E17DCF2B140
{
// System.Int32 System.Data.SerializationFormat::value__
int32_t ___value___2;
};
// System.Data.SqlTypes.SqlCompareOptions
struct SqlCompareOptions_t587E37815433668F9B319101E1E9AFE84377ABA8
{
// System.Int32 System.Data.SqlTypes.SqlCompareOptions::value__
int32_t ___value___2;
};
// System.Data.SqlTypes.SqlDateTime
struct SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2
{
// System.Boolean System.Data.SqlTypes.SqlDateTime::m_fNotNull
bool ___m_fNotNull_0;
// System.Int32 System.Data.SqlTypes.SqlDateTime::m_day
int32_t ___m_day_1;
// System.Int32 System.Data.SqlTypes.SqlDateTime::m_time
int32_t ___m_time_2;
};
struct SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_StaticFields
{
// System.Double System.Data.SqlTypes.SqlDateTime::s_SQLTicksPerMillisecond
double ___s_SQLTicksPerMillisecond_3;
// System.Int32 System.Data.SqlTypes.SqlDateTime::SQLTicksPerSecond
int32_t ___SQLTicksPerSecond_4;
// System.Int32 System.Data.SqlTypes.SqlDateTime::SQLTicksPerMinute
int32_t ___SQLTicksPerMinute_5;
// System.Int32 System.Data.SqlTypes.SqlDateTime::SQLTicksPerHour
int32_t ___SQLTicksPerHour_6;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_SQLTicksPerDay
int32_t ___s_SQLTicksPerDay_7;
// System.Int64 System.Data.SqlTypes.SqlDateTime::s_ticksPerSecond
int64_t ___s_ticksPerSecond_8;
// System.DateTime System.Data.SqlTypes.SqlDateTime::s_SQLBaseDate
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_SQLBaseDate_9;
// System.Int64 System.Data.SqlTypes.SqlDateTime::s_SQLBaseDateTicks
int64_t ___s_SQLBaseDateTicks_10;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_minYear
int32_t ___s_minYear_11;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_maxYear
int32_t ___s_maxYear_12;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_minDay
int32_t ___s_minDay_13;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_maxDay
int32_t ___s_maxDay_14;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_minTime
int32_t ___s_minTime_15;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_maxTime
int32_t ___s_maxTime_16;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_dayBase
int32_t ___s_dayBase_17;
// System.Int32[] System.Data.SqlTypes.SqlDateTime::s_daysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_18;
// System.Int32[] System.Data.SqlTypes.SqlDateTime::s_daysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_19;
// System.DateTime System.Data.SqlTypes.SqlDateTime::s_minDateTime
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_minDateTime_20;
// System.DateTime System.Data.SqlTypes.SqlDateTime::s_maxDateTime
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_maxDateTime_21;
// System.TimeSpan System.Data.SqlTypes.SqlDateTime::s_minTimeSpan
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_minTimeSpan_22;
// System.TimeSpan System.Data.SqlTypes.SqlDateTime::s_maxTimeSpan
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maxTimeSpan_23;
// System.String System.Data.SqlTypes.SqlDateTime::s_ISO8601_DateTimeFormat
String_t* ___s_ISO8601_DateTimeFormat_24;
// System.String[] System.Data.SqlTypes.SqlDateTime::s_dateTimeFormats
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_dateTimeFormats_25;
// System.Data.SqlTypes.SqlDateTime System.Data.SqlTypes.SqlDateTime::MinValue
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 ___MinValue_26;
// System.Data.SqlTypes.SqlDateTime System.Data.SqlTypes.SqlDateTime::MaxValue
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 ___MaxValue_27;
// System.Data.SqlTypes.SqlDateTime System.Data.SqlTypes.SqlDateTime::Null
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 ___Null_28;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlDateTime
struct SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int32_t ___m_day_1;
int32_t ___m_time_2;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlDateTime
struct SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_marshaled_com
{
int32_t ___m_fNotNull_0;
int32_t ___m_day_1;
int32_t ___m_time_2;
};
// System.Data.Common.StorageType
struct StorageType_t4092998298817BE32767778C2CF1CB1F694282A0
{
// System.Int32 System.Data.Common.StorageType::value__
int32_t ___value___2;
};
// System.StringComparison
struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
{
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
};
// System.Data.Tokens
struct Tokens_t59054E7109144A03E2ABAF78915DDE9B6290D924
{
// System.Int32 System.Data.Tokens::value__
int32_t ___value___2;
};
// System.ComponentModel.TypeConverter
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C : public RuntimeObject
{
};
struct TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C_StaticFields
{
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion
bool ___useCompatibleTypeConversion_1;
};
// System.Data.ValueType
struct ValueType_t0D675A0C2AC750E12ADBD9AF91B37D206A6779A4
{
// System.Int32 System.Data.ValueType::value__
int32_t ___value___2;
};
// System.Data.BinaryNode/DataTypePrecedence
struct DataTypePrecedence_t5481FC2BFE743DB75D4F025BB1CD783F3C55BB49
{
// System.Int32 System.Data.BinaryNode/DataTypePrecedence::value__
int32_t ___value___2;
};
// System.Data.DataRelationCollection/DataTableRelationCollection
struct DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2 : public DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956
{
// System.Data.DataTable System.Data.DataRelationCollection/DataTableRelationCollection::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_7;
// System.Collections.ArrayList System.Data.DataRelationCollection/DataTableRelationCollection::_relations
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____relations_8;
// System.Boolean System.Data.DataRelationCollection/DataTableRelationCollection::_fParentCollection
bool ____fParentCollection_9;
// System.ComponentModel.CollectionChangeEventHandler System.Data.DataRelationCollection/DataTableRelationCollection::RelationPropertyChanged
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___RelationPropertyChanged_10;
};
// System.Data.AggregateNode
struct AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3 : public ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31
{
// System.Data.AggregateType System.Data.AggregateNode::_type
int32_t ____type_1;
// System.Data.Aggregate System.Data.AggregateNode::_aggregate
int32_t ____aggregate_2;
// System.Boolean System.Data.AggregateNode::_local
bool ____local_3;
// System.String System.Data.AggregateNode::_relationName
String_t* ____relationName_4;
// System.String System.Data.AggregateNode::_columnName
String_t* ____columnName_5;
// System.Data.DataTable System.Data.AggregateNode::_childTable
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____childTable_6;
// System.Data.DataColumn System.Data.AggregateNode::_column
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ____column_7;
// System.Data.DataRelation System.Data.AggregateNode::_relation
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ____relation_8;
};
// System.ComponentModel.CollectionChangeEventArgs
struct CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::<Action>k__BackingField
int32_t ___U3CActionU3Ek__BackingField_1;
// System.Object System.ComponentModel.CollectionChangeEventArgs::<Element>k__BackingField
RuntimeObject* ___U3CElementU3Ek__BackingField_2;
};
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57 : public RuntimeObject
{
// System.String System.Globalization.CompareInfo::m_name
String_t* ___m_name_5;
// System.String System.Globalization.CompareInfo::_sortName
String_t* ____sortName_6;
// System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion
SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E* ___m_SortVersion_7;
// System.Int32 System.Globalization.CompareInfo::culture
int32_t ___culture_8;
// System.Globalization.ISimpleCollator System.Globalization.CompareInfo::collator
RuntimeObject* ___collator_9;
};
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields
{
// System.Globalization.CompareInfo System.Globalization.CompareInfo::Invariant
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___Invariant_4;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator> System.Globalization.CompareInfo::collators
Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470* ___collators_10;
// System.Boolean System.Globalization.CompareInfo::managedCollation
bool ___managedCollation_11;
// System.Boolean System.Globalization.CompareInfo::managedCollationChecked
bool ___managedCollationChecked_12;
};
// System.Data.DataColumn
struct DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66 : public MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA
{
// System.Boolean System.Data.DataColumn::_allowNull
bool ____allowNull_3;
// System.String System.Data.DataColumn::_caption
String_t* ____caption_4;
// System.String System.Data.DataColumn::_columnName
String_t* ____columnName_5;
// System.Type System.Data.DataColumn::_dataType
Type_t* ____dataType_6;
// System.Data.Common.StorageType System.Data.DataColumn::_storageType
int32_t ____storageType_7;
// System.Object System.Data.DataColumn::_defaultValue
RuntimeObject* ____defaultValue_8;
// System.Data.DataSetDateTime System.Data.DataColumn::_dateTimeMode
int32_t ____dateTimeMode_9;
// System.Data.DataExpression System.Data.DataColumn::_expression
DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* ____expression_10;
// System.Int32 System.Data.DataColumn::_maxLength
int32_t ____maxLength_11;
// System.Int32 System.Data.DataColumn::_ordinal
int32_t ____ordinal_12;
// System.Boolean System.Data.DataColumn::_readOnly
bool ____readOnly_13;
// System.Data.Index System.Data.DataColumn::_sortIndex
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ____sortIndex_14;
// System.Data.DataTable System.Data.DataColumn::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_15;
// System.Boolean System.Data.DataColumn::_unique
bool ____unique_16;
// System.Data.MappingType System.Data.DataColumn::_columnMapping
int32_t ____columnMapping_17;
// System.Int32 System.Data.DataColumn::_hashCode
int32_t ____hashCode_18;
// System.Int32 System.Data.DataColumn::_errors
int32_t ____errors_19;
// System.Boolean System.Data.DataColumn::_isSqlType
bool ____isSqlType_20;
// System.Boolean System.Data.DataColumn::_implementsINullable
bool ____implementsINullable_21;
// System.Boolean System.Data.DataColumn::_implementsIChangeTracking
bool ____implementsIChangeTracking_22;
// System.Boolean System.Data.DataColumn::_implementsIRevertibleChangeTracking
bool ____implementsIRevertibleChangeTracking_23;
// System.Boolean System.Data.DataColumn::_implementsIXMLSerializable
bool ____implementsIXMLSerializable_24;
// System.Boolean System.Data.DataColumn::_defaultValueIsNull
bool ____defaultValueIsNull_25;
// System.Collections.Generic.List`1<System.Data.DataColumn> System.Data.DataColumn::_dependentColumns
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* ____dependentColumns_26;
// System.Data.PropertyCollection System.Data.DataColumn::_extendedProperties
PropertyCollection_t531D3CA9714C3D7818C1B1C139A9C4F04B73EE7C* ____extendedProperties_27;
// System.Data.Common.DataStorage System.Data.DataColumn::_storage
DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A* ____storage_28;
// System.Data.AutoIncrementValue System.Data.DataColumn::_autoInc
AutoIncrementValue_tB454D864DCB48A3C8EB2F806BD0AB284BB735BCE* ____autoInc_29;
// System.String System.Data.DataColumn::_columnUri
String_t* ____columnUri_30;
// System.String System.Data.DataColumn::_columnPrefix
String_t* ____columnPrefix_31;
// System.String System.Data.DataColumn::_encodedColumnName
String_t* ____encodedColumnName_32;
// System.Data.SimpleType System.Data.DataColumn::_simpleType
SimpleType_tE6F54AF1D35994BBDB2AEB808DB8C87AB7477D14* ____simpleType_33;
// System.Int32 System.Data.DataColumn::_objectID
int32_t ____objectID_35;
// System.String System.Data.DataColumn::<XmlDataType>k__BackingField
String_t* ___U3CXmlDataTypeU3Ek__BackingField_36;
// System.ComponentModel.PropertyChangedEventHandler System.Data.DataColumn::PropertyChanging
PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA* ___PropertyChanging_37;
};
struct DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_StaticFields
{
// System.Int32 System.Data.DataColumn::s_objectTypeCount
int32_t ___s_objectTypeCount_34;
};
// System.Data.DataExpression
struct DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6 : public RuntimeObject
{
// System.String System.Data.DataExpression::_originalExpression
String_t* ____originalExpression_0;
// System.Boolean System.Data.DataExpression::_parsed
bool ____parsed_1;
// System.Boolean System.Data.DataExpression::_bound
bool ____bound_2;
// System.Data.ExpressionNode System.Data.DataExpression::_expr
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ____expr_3;
// System.Data.DataTable System.Data.DataExpression::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_4;
// System.Data.Common.StorageType System.Data.DataExpression::_storageType
int32_t ____storageType_5;
// System.Type System.Data.DataExpression::_dataType
Type_t* ____dataType_6;
// System.Data.DataColumn[] System.Data.DataExpression::_dependency
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____dependency_7;
};
// System.Data.DataRow
struct DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388 : public RuntimeObject
{
// System.Data.DataTable System.Data.DataRow::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_0;
// System.Data.DataColumnCollection System.Data.DataRow::_columns
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* ____columns_1;
// System.Int32 System.Data.DataRow::_oldRecord
int32_t ____oldRecord_2;
// System.Int32 System.Data.DataRow::_newRecord
int32_t ____newRecord_3;
// System.Int32 System.Data.DataRow::_tempRecord
int32_t ____tempRecord_4;
// System.Int64 System.Data.DataRow::_rowID
int64_t ____rowID_5;
// System.Data.DataRowAction System.Data.DataRow::_action
int32_t ____action_6;
// System.Boolean System.Data.DataRow::_inChangingEvent
bool ____inChangingEvent_7;
// System.Boolean System.Data.DataRow::_inDeletingEvent
bool ____inDeletingEvent_8;
// System.Boolean System.Data.DataRow::_inCascade
bool ____inCascade_9;
// System.Data.DataColumn System.Data.DataRow::_lastChangedColumn
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ____lastChangedColumn_10;
// System.Int32 System.Data.DataRow::_countColumnChange
int32_t ____countColumnChange_11;
// System.Data.DataError System.Data.DataRow::_error
DataError_tEE3A28C2A673D369980814389991CD62F45E56A1* ____error_12;
// System.Int32 System.Data.DataRow::_rbTreeNodeId
int32_t ____rbTreeNodeId_13;
// System.Int32 System.Data.DataRow::_objectID
int32_t ____objectID_15;
};
struct DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388_StaticFields
{
// System.Int32 System.Data.DataRow::s_objectTypeCount
int32_t ___s_objectTypeCount_14;
};
// System.Data.DataSet
struct DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B : public MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA
{
// System.Data.DataViewManager System.Data.DataSet::_defaultViewManager
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ____defaultViewManager_3;
// System.Data.DataTableCollection System.Data.DataSet::_tableCollection
DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* ____tableCollection_4;
// System.Data.DataRelationCollection System.Data.DataSet::_relationCollection
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* ____relationCollection_5;
// System.Data.PropertyCollection System.Data.DataSet::_extendedProperties
PropertyCollection_t531D3CA9714C3D7818C1B1C139A9C4F04B73EE7C* ____extendedProperties_6;
// System.String System.Data.DataSet::_dataSetName
String_t* ____dataSetName_7;
// System.String System.Data.DataSet::_datasetPrefix
String_t* ____datasetPrefix_8;
// System.String System.Data.DataSet::_namespaceURI
String_t* ____namespaceURI_9;
// System.Boolean System.Data.DataSet::_enforceConstraints
bool ____enforceConstraints_10;
// System.Boolean System.Data.DataSet::_caseSensitive
bool ____caseSensitive_11;
// System.Globalization.CultureInfo System.Data.DataSet::_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_12;
// System.Boolean System.Data.DataSet::_cultureUserSet
bool ____cultureUserSet_13;
// System.Boolean System.Data.DataSet::_fInReadXml
bool ____fInReadXml_14;
// System.Boolean System.Data.DataSet::_fInLoadDiffgram
bool ____fInLoadDiffgram_15;
// System.Boolean System.Data.DataSet::_fTopLevelTable
bool ____fTopLevelTable_16;
// System.Boolean System.Data.DataSet::_fInitInProgress
bool ____fInitInProgress_17;
// System.Boolean System.Data.DataSet::_fEnableCascading
bool ____fEnableCascading_18;
// System.Boolean System.Data.DataSet::_fIsSchemaLoading
bool ____fIsSchemaLoading_19;
// System.String System.Data.DataSet::_mainTableName
String_t* ____mainTableName_20;
// System.Data.SerializationFormat System.Data.DataSet::_remotingFormat
int32_t ____remotingFormat_21;
// System.Object System.Data.DataSet::_defaultViewManagerLock
RuntimeObject* ____defaultViewManagerLock_22;
// System.Int32 System.Data.DataSet::_objectID
int32_t ____objectID_24;
// System.Boolean System.Data.DataSet::_useDataSetSchemaOnly
bool ____useDataSetSchemaOnly_26;
// System.Boolean System.Data.DataSet::_udtIsWrapped
bool ____udtIsWrapped_27;
// System.ComponentModel.PropertyChangedEventHandler System.Data.DataSet::PropertyChanging
PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA* ___PropertyChanging_28;
// System.Data.MergeFailedEventHandler System.Data.DataSet::MergeFailed
MergeFailedEventHandler_t9EB4948FFEF2AC7BC45273146717EFDA9A2EB9A9* ___MergeFailed_29;
// System.Data.DataRowCreatedEventHandler System.Data.DataSet::DataRowCreated
DataRowCreatedEventHandler_t9A8B728761AB985BA0979A4447A269DF5D429029* ___DataRowCreated_30;
// System.Data.DataSetClearEventhandler System.Data.DataSet::ClearFunctionCalled
DataSetClearEventhandler_t66917FBEC6137CBE9E5D72CB53E1FF6EBE8333E1* ___ClearFunctionCalled_31;
};
struct DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B_StaticFields
{
// System.Int32 System.Data.DataSet::s_objectTypeCount
int32_t ___s_objectTypeCount_23;
// System.Xml.Schema.XmlSchemaComplexType System.Data.DataSet::s_schemaTypeForWSDL
XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* ___s_schemaTypeForWSDL_25;
};
// System.Data.DataTable
struct DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07 : public MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA
{
// System.Data.DataSet System.Data.DataTable::_dataSet
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ____dataSet_3;
// System.Data.DataView System.Data.DataTable::_defaultView
DataView_t882C19B1455AFCE770D60A43A690096801824A50* ____defaultView_4;
// System.Int64 System.Data.DataTable::_nextRowID
int64_t ____nextRowID_5;
// System.Data.DataRowCollection System.Data.DataTable::_rowCollection
DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* ____rowCollection_6;
// System.Data.DataColumnCollection System.Data.DataTable::_columnCollection
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* ____columnCollection_7;
// System.Data.ConstraintCollection System.Data.DataTable::_constraintCollection
ConstraintCollection_tE6135623B0068FD56F0D15E13FFA1882D36BDD40* ____constraintCollection_8;
// System.Int32 System.Data.DataTable::_elementColumnCount
int32_t ____elementColumnCount_9;
// System.Data.DataRelationCollection System.Data.DataTable::_parentRelationsCollection
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* ____parentRelationsCollection_10;
// System.Data.DataRelationCollection System.Data.DataTable::_childRelationsCollection
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* ____childRelationsCollection_11;
// System.Data.RecordManager System.Data.DataTable::_recordManager
RecordManager_t5525269209BE5391607F8C811470AC2EC5C8FA4A* ____recordManager_12;
// System.Collections.Generic.List`1<System.Data.Index> System.Data.DataTable::_indexes
List_1_tD455920B93EB13CDFF946088629D287A8D3CA973* ____indexes_13;
// System.Collections.Generic.List`1<System.Data.Index> System.Data.DataTable::_shadowIndexes
List_1_tD455920B93EB13CDFF946088629D287A8D3CA973* ____shadowIndexes_14;
// System.Int32 System.Data.DataTable::_shadowCount
int32_t ____shadowCount_15;
// System.Data.PropertyCollection System.Data.DataTable::_extendedProperties
PropertyCollection_t531D3CA9714C3D7818C1B1C139A9C4F04B73EE7C* ____extendedProperties_16;
// System.String System.Data.DataTable::_tableName
String_t* ____tableName_17;
// System.String System.Data.DataTable::_tableNamespace
String_t* ____tableNamespace_18;
// System.String System.Data.DataTable::_tablePrefix
String_t* ____tablePrefix_19;
// System.Data.DataExpression System.Data.DataTable::_displayExpression
DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* ____displayExpression_20;
// System.Boolean System.Data.DataTable::_fNestedInDataset
bool ____fNestedInDataset_21;
// System.Globalization.CultureInfo System.Data.DataTable::_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____culture_22;
// System.Boolean System.Data.DataTable::_cultureUserSet
bool ____cultureUserSet_23;
// System.Globalization.CompareInfo System.Data.DataTable::_compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ____compareInfo_24;
// System.Globalization.CompareOptions System.Data.DataTable::_compareFlags
int32_t ____compareFlags_25;
// System.IFormatProvider System.Data.DataTable::_formatProvider
RuntimeObject* ____formatProvider_26;
// System.StringComparer System.Data.DataTable::_hashCodeProvider
StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* ____hashCodeProvider_27;
// System.Boolean System.Data.DataTable::_caseSensitive
bool ____caseSensitive_28;
// System.Boolean System.Data.DataTable::_caseSensitiveUserSet
bool ____caseSensitiveUserSet_29;
// System.String System.Data.DataTable::_encodedTableName
String_t* ____encodedTableName_30;
// System.Data.DataColumn System.Data.DataTable::_xmlText
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ____xmlText_31;
// System.Data.DataColumn System.Data.DataTable::_colUnique
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ____colUnique_32;
// System.Decimal System.Data.DataTable::_minOccurs
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ____minOccurs_33;
// System.Decimal System.Data.DataTable::_maxOccurs
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ____maxOccurs_34;
// System.Boolean System.Data.DataTable::_repeatableElement
bool ____repeatableElement_35;
// System.Object System.Data.DataTable::_typeName
RuntimeObject* ____typeName_36;
// System.Data.UniqueConstraint System.Data.DataTable::_primaryKey
UniqueConstraint_tE48A79D2F7DE0EA4A3F1BF5BB322C383E60465F6* ____primaryKey_37;
// System.Data.IndexField[] System.Data.DataTable::_primaryIndex
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* ____primaryIndex_38;
// System.Data.DataColumn[] System.Data.DataTable::_delayedSetPrimaryKey
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* ____delayedSetPrimaryKey_39;
// System.Data.Index System.Data.DataTable::_loadIndex
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ____loadIndex_40;
// System.Data.Index System.Data.DataTable::_loadIndexwithOriginalAdded
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ____loadIndexwithOriginalAdded_41;
// System.Data.Index System.Data.DataTable::_loadIndexwithCurrentDeleted
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ____loadIndexwithCurrentDeleted_42;
// System.Int32 System.Data.DataTable::_suspendIndexEvents
int32_t ____suspendIndexEvents_43;
// System.Boolean System.Data.DataTable::_inDataLoad
bool ____inDataLoad_44;
// System.Boolean System.Data.DataTable::_schemaLoading
bool ____schemaLoading_45;
// System.Boolean System.Data.DataTable::_enforceConstraints
bool ____enforceConstraints_46;
// System.Boolean System.Data.DataTable::_suspendEnforceConstraints
bool ____suspendEnforceConstraints_47;
// System.Boolean System.Data.DataTable::fInitInProgress
bool ___fInitInProgress_48;
// System.Boolean System.Data.DataTable::_inLoad
bool ____inLoad_49;
// System.Boolean System.Data.DataTable::_fInLoadDiffgram
bool ____fInLoadDiffgram_50;
// System.Byte System.Data.DataTable::_isTypedDataTable
uint8_t ____isTypedDataTable_51;
// System.Data.DataRow[] System.Data.DataTable::_emptyDataRowArray
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* ____emptyDataRowArray_52;
// System.ComponentModel.PropertyDescriptorCollection System.Data.DataTable::_propertyDescriptorCollectionCache
PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* ____propertyDescriptorCollectionCache_53;
// System.Data.DataRelation[] System.Data.DataTable::_nestedParentRelations
DataRelationU5BU5D_t1640C9372BDC91DAE0359E08BE1E91AE48924FF0* ____nestedParentRelations_54;
// System.Collections.Generic.List`1<System.Data.DataColumn> System.Data.DataTable::_dependentColumns
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* ____dependentColumns_55;
// System.Boolean System.Data.DataTable::_mergingData
bool ____mergingData_56;
// System.Data.DataRowChangeEventHandler System.Data.DataTable::_onRowChangedDelegate
DataRowChangeEventHandler_t2F295C9D2283CBF4D109CBDFCD141EF2A58B24BF* ____onRowChangedDelegate_57;
// System.Data.DataRowChangeEventHandler System.Data.DataTable::_onRowChangingDelegate
DataRowChangeEventHandler_t2F295C9D2283CBF4D109CBDFCD141EF2A58B24BF* ____onRowChangingDelegate_58;
// System.Data.DataRowChangeEventHandler System.Data.DataTable::_onRowDeletingDelegate
DataRowChangeEventHandler_t2F295C9D2283CBF4D109CBDFCD141EF2A58B24BF* ____onRowDeletingDelegate_59;
// System.Data.DataRowChangeEventHandler System.Data.DataTable::_onRowDeletedDelegate
DataRowChangeEventHandler_t2F295C9D2283CBF4D109CBDFCD141EF2A58B24BF* ____onRowDeletedDelegate_60;
// System.Data.DataColumnChangeEventHandler System.Data.DataTable::_onColumnChangedDelegate
DataColumnChangeEventHandler_t666070D5D5C9A6CF6E9FA12E6FC15B7DB20C8959* ____onColumnChangedDelegate_61;
// System.Data.DataColumnChangeEventHandler System.Data.DataTable::_onColumnChangingDelegate
DataColumnChangeEventHandler_t666070D5D5C9A6CF6E9FA12E6FC15B7DB20C8959* ____onColumnChangingDelegate_62;
// System.Data.DataTableClearEventHandler System.Data.DataTable::_onTableClearingDelegate
DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* ____onTableClearingDelegate_63;
// System.Data.DataTableClearEventHandler System.Data.DataTable::_onTableClearedDelegate
DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* ____onTableClearedDelegate_64;
// System.Data.DataTableNewRowEventHandler System.Data.DataTable::_onTableNewRowDelegate
DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* ____onTableNewRowDelegate_65;
// System.ComponentModel.PropertyChangedEventHandler System.Data.DataTable::_onPropertyChangingDelegate
PropertyChangedEventHandler_tF1250C146BE6FB43477D29C5D18A10B6329419DA* ____onPropertyChangingDelegate_66;
// System.Data.DataRowBuilder System.Data.DataTable::_rowBuilder
DataRowBuilder_t8EFCEBE1AE55392AAE53DA15D2B334C56BB14566* ____rowBuilder_67;
// System.Collections.Generic.List`1<System.Data.DataView> System.Data.DataTable::_delayedViews
List_1_t1CDDD861715A83BE1EF98CE75870A483BB5ECC93* ____delayedViews_68;
// System.Collections.Generic.List`1<System.Data.DataViewListener> System.Data.DataTable::_dataViewListeners
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* ____dataViewListeners_69;
// System.Collections.Hashtable System.Data.DataTable::_rowDiffId
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____rowDiffId_70;
// System.Threading.ReaderWriterLockSlim System.Data.DataTable::_indexesLock
ReaderWriterLockSlim_t3BF29C18C9FC0EE07209EDD54D938EA473FB3906* ____indexesLock_71;
// System.Int32 System.Data.DataTable::_ukColumnPositionForInference
int32_t ____ukColumnPositionForInference_72;
// System.Data.SerializationFormat System.Data.DataTable::_remotingFormat
int32_t ____remotingFormat_73;
// System.Int32 System.Data.DataTable::_objectID
int32_t ____objectID_75;
};
struct DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_StaticFields
{
// System.Int32 System.Data.DataTable::s_objectTypeCount
int32_t ___s_objectTypeCount_74;
};
// System.Data.DataView
struct DataView_t882C19B1455AFCE770D60A43A690096801824A50 : public MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA
{
// System.Data.DataViewManager System.Data.DataView::_dataViewManager
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ____dataViewManager_3;
// System.Data.DataTable System.Data.DataView::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_4;
// System.Boolean System.Data.DataView::_locked
bool ____locked_5;
// System.Data.Index System.Data.DataView::_index
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ____index_6;
// System.Collections.Generic.Dictionary`2<System.String,System.Data.Index> System.Data.DataView::_findIndexes
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* ____findIndexes_7;
// System.String System.Data.DataView::_sort
String_t* ____sort_8;
// System.Comparison`1<System.Data.DataRow> System.Data.DataView::_comparison
Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* ____comparison_9;
// System.Data.IFilter System.Data.DataView::_rowFilter
RuntimeObject* ____rowFilter_10;
// System.Data.DataViewRowState System.Data.DataView::_recordStates
int32_t ____recordStates_11;
// System.Boolean System.Data.DataView::_shouldOpen
bool ____shouldOpen_12;
// System.Boolean System.Data.DataView::_open
bool ____open_13;
// System.Boolean System.Data.DataView::_allowNew
bool ____allowNew_14;
// System.Boolean System.Data.DataView::_allowEdit
bool ____allowEdit_15;
// System.Boolean System.Data.DataView::_allowDelete
bool ____allowDelete_16;
// System.Boolean System.Data.DataView::_applyDefaultSort
bool ____applyDefaultSort_17;
// System.Data.DataRow System.Data.DataView::_addNewRow
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ____addNewRow_18;
// System.ComponentModel.ListChangedEventArgs System.Data.DataView::_addNewMoved
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ____addNewMoved_19;
// System.ComponentModel.ListChangedEventHandler System.Data.DataView::_onListChanged
ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616* ____onListChanged_20;
// System.String System.Data.DataView::_delayedSort
String_t* ____delayedSort_22;
// System.Data.DataViewRowState System.Data.DataView::_delayedRecordStates
int32_t ____delayedRecordStates_23;
// System.Boolean System.Data.DataView::_fInitInProgress
bool ____fInitInProgress_24;
// System.Boolean System.Data.DataView::_fEndInitInProgress
bool ____fEndInitInProgress_25;
// System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView> System.Data.DataView::_rowViewCache
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* ____rowViewCache_26;
// System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView> System.Data.DataView::_rowViewBuffer
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* ____rowViewBuffer_27;
// System.Data.DataViewListener System.Data.DataView::_dvListener
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* ____dvListener_28;
// System.Int32 System.Data.DataView::_objectID
int32_t ____objectID_30;
};
struct DataView_t882C19B1455AFCE770D60A43A690096801824A50_StaticFields
{
// System.ComponentModel.ListChangedEventArgs System.Data.DataView::s_resetEventArgs
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___s_resetEventArgs_21;
// System.Int32 System.Data.DataView::s_objectTypeCount
int32_t ___s_objectTypeCount_29;
};
// System.Data.DataViewSetting
struct DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601 : public RuntimeObject
{
// System.Data.DataViewManager System.Data.DataViewSetting::_dataViewManager
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ____dataViewManager_0;
// System.Data.DataTable System.Data.DataViewSetting::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_1;
// System.String System.Data.DataViewSetting::_sort
String_t* ____sort_2;
// System.String System.Data.DataViewSetting::_rowFilter
String_t* ____rowFilter_3;
// System.Data.DataViewRowState System.Data.DataViewSetting::_rowStateFilter
int32_t ____rowStateFilter_4;
// System.Boolean System.Data.DataViewSetting::_applyDefaultSort
bool ____applyDefaultSort_5;
};
// System.Data.ExpressionParser
struct ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311 : public RuntimeObject
{
// System.Char System.Data.ExpressionParser::_escape
Il2CppChar ____escape_1;
// System.Char System.Data.ExpressionParser::_decimalSeparator
Il2CppChar ____decimalSeparator_2;
// System.Char System.Data.ExpressionParser::_listSeparator
Il2CppChar ____listSeparator_3;
// System.Char System.Data.ExpressionParser::_exponentL
Il2CppChar ____exponentL_4;
// System.Char System.Data.ExpressionParser::_exponentU
Il2CppChar ____exponentU_5;
// System.Char[] System.Data.ExpressionParser::_text
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____text_6;
// System.Int32 System.Data.ExpressionParser::_pos
int32_t ____pos_7;
// System.Int32 System.Data.ExpressionParser::_start
int32_t ____start_8;
// System.Data.Tokens System.Data.ExpressionParser::_token
int32_t ____token_9;
// System.Int32 System.Data.ExpressionParser::_op
int32_t ____op_10;
// System.Data.OperatorInfo[] System.Data.ExpressionParser::_ops
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* ____ops_11;
// System.Int32 System.Data.ExpressionParser::_topOperator
int32_t ____topOperator_12;
// System.Int32 System.Data.ExpressionParser::_topNode
int32_t ____topNode_13;
// System.Data.DataTable System.Data.ExpressionParser::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_14;
// System.Data.ExpressionNode[] System.Data.ExpressionParser::_nodeStack
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* ____nodeStack_15;
// System.Int32 System.Data.ExpressionParser::_prevOperand
int32_t ____prevOperand_16;
// System.Data.ExpressionNode System.Data.ExpressionParser::_expression
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ____expression_17;
};
struct ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_StaticFields
{
// System.Data.ExpressionParser/ReservedWords[] System.Data.ExpressionParser::s_reservedwords
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* ___s_reservedwords_0;
};
// System.Data.ForeignKeyConstraint
struct ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062 : public Constraint_t0A8908A502F0A089936D95EF44F76F9628CFB50A
{
// System.Data.Rule System.Data.ForeignKeyConstraint::_deleteRule
int32_t ____deleteRule_5;
// System.Data.Rule System.Data.ForeignKeyConstraint::_updateRule
int32_t ____updateRule_6;
// System.Data.AcceptRejectRule System.Data.ForeignKeyConstraint::_acceptRejectRule
int32_t ____acceptRejectRule_7;
// System.Data.DataKey System.Data.ForeignKeyConstraint::_childKey
DataKey_tC6DF14FCD651ACE82D9C872CFC449847B000F73A ____childKey_8;
// System.Data.DataKey System.Data.ForeignKeyConstraint::_parentKey
DataKey_tC6DF14FCD651ACE82D9C872CFC449847B000F73A ____parentKey_9;
// System.String System.Data.ForeignKeyConstraint::_constraintName
String_t* ____constraintName_10;
// System.String[] System.Data.ForeignKeyConstraint::_parentColumnNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____parentColumnNames_11;
// System.String[] System.Data.ForeignKeyConstraint::_childColumnNames
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____childColumnNames_12;
// System.String System.Data.ForeignKeyConstraint::_parentTableName
String_t* ____parentTableName_13;
};
// System.Data.Function
struct Function_tAC32D286B7613834FFF024AD86D93B70554173BF : public RuntimeObject
{
// System.String System.Data.Function::_name
String_t* ____name_0;
// System.Data.FunctionId System.Data.Function::_id
int32_t ____id_1;
// System.Type System.Data.Function::_result
Type_t* ____result_2;
// System.Boolean System.Data.Function::_isValidateArguments
bool ____isValidateArguments_3;
// System.Boolean System.Data.Function::_isVariantArgumentList
bool ____isVariantArgumentList_4;
// System.Int32 System.Data.Function::_argumentCount
int32_t ____argumentCount_5;
// System.Type[] System.Data.Function::_parameters
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ____parameters_6;
};
struct Function_tAC32D286B7613834FFF024AD86D93B70554173BF_StaticFields
{
// System.String[] System.Data.Function::s_functionName
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_functionName_7;
};
// System.Data.Index
struct Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483 : public RuntimeObject
{
// System.Data.DataTable System.Data.Index::_table
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ____table_0;
// System.Data.IndexField[] System.Data.Index::_indexFields
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* ____indexFields_1;
// System.Comparison`1<System.Data.DataRow> System.Data.Index::_comparison
Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* ____comparison_2;
// System.Data.DataViewRowState System.Data.Index::_recordStates
int32_t ____recordStates_3;
// System.WeakReference System.Data.Index::_rowFilter
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* ____rowFilter_4;
// System.Data.Index/IndexTree System.Data.Index::_records
IndexTree_t5A9D1B6E4C2AF3B18E6CC799F1A38063EAA53887* ____records_5;
// System.Int32 System.Data.Index::_recordCount
int32_t ____recordCount_6;
// System.Int32 System.Data.Index::_refCount
int32_t ____refCount_7;
// System.Data.Listeners`1<System.Data.DataViewListener> System.Data.Index::_listeners
Listeners_1_t37132A15E50B5B90C84260E8B1072BF1D7DB99CC* ____listeners_8;
// System.Boolean System.Data.Index::_suspendEvents
bool ____suspendEvents_9;
// System.Boolean System.Data.Index::_isSharable
bool ____isSharable_10;
// System.Boolean System.Data.Index::_hasRemoteAggregate
bool ____hasRemoteAggregate_11;
// System.Int32 System.Data.Index::_objectID
int32_t ____objectID_13;
};
struct Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483_StaticFields
{
// System.Int32 System.Data.Index::s_objectTypeCount
int32_t ___s_objectTypeCount_12;
};
// System.ComponentModel.ListChangedEventArgs
struct ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377
{
// System.ComponentModel.ListChangedType System.ComponentModel.ListChangedEventArgs::<ListChangedType>k__BackingField
int32_t ___U3CListChangedTypeU3Ek__BackingField_1;
// System.Int32 System.ComponentModel.ListChangedEventArgs::<NewIndex>k__BackingField
int32_t ___U3CNewIndexU3Ek__BackingField_2;
// System.Int32 System.ComponentModel.ListChangedEventArgs::<OldIndex>k__BackingField
int32_t ___U3COldIndexU3Ek__BackingField_3;
// System.ComponentModel.PropertyDescriptor System.ComponentModel.ListChangedEventArgs::<PropertyDescriptor>k__BackingField
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___U3CPropertyDescriptorU3Ek__BackingField_4;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject
{
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes_1;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes_2;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___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_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___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;
};
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields
{
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo_0;
};
// System.Data.OperatorInfo
struct OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054 : public RuntimeObject
{
// System.Data.Nodes System.Data.OperatorInfo::_type
int32_t ____type_0;
// System.Int32 System.Data.OperatorInfo::_op
int32_t ____op_1;
// System.Int32 System.Data.OperatorInfo::_priority
int32_t ____priority_2;
};
// System.ComponentModel.ReferenceConverter
struct ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2 : public TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C
{
// System.Type System.ComponentModel.ReferenceConverter::_type
Type_t* ____type_3;
};
struct ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2_StaticFields
{
// System.String System.ComponentModel.ReferenceConverter::s_none
String_t* ___s_none_2;
};
// System.Data.SqlTypes.SqlString
struct SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D
{
// System.String System.Data.SqlTypes.SqlString::m_value
String_t* ___m_value_0;
// System.Globalization.CompareInfo System.Data.SqlTypes.SqlString::m_cmpInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___m_cmpInfo_1;
// System.Int32 System.Data.SqlTypes.SqlString::m_lcid
int32_t ___m_lcid_2;
// System.Data.SqlTypes.SqlCompareOptions System.Data.SqlTypes.SqlString::m_flag
int32_t ___m_flag_3;
// System.Boolean System.Data.SqlTypes.SqlString::m_fNotNull
bool ___m_fNotNull_4;
};
struct SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_StaticFields
{
// System.Data.SqlTypes.SqlString System.Data.SqlTypes.SqlString::Null
SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D ___Null_5;
// System.Text.UnicodeEncoding System.Data.SqlTypes.SqlString::s_unicodeEncoding
UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0* ___s_unicodeEncoding_6;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreCase
int32_t ___IgnoreCase_7;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreWidth
int32_t ___IgnoreWidth_8;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreNonSpace
int32_t ___IgnoreNonSpace_9;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreKanaType
int32_t ___IgnoreKanaType_10;
// System.Int32 System.Data.SqlTypes.SqlString::BinarySort
int32_t ___BinarySort_11;
// System.Int32 System.Data.SqlTypes.SqlString::BinarySort2
int32_t ___BinarySort2_12;
// System.Data.SqlTypes.SqlCompareOptions System.Data.SqlTypes.SqlString::s_iDefaultFlag
int32_t ___s_iDefaultFlag_13;
// System.Globalization.CompareOptions System.Data.SqlTypes.SqlString::s_iValidCompareOptionMask
int32_t ___s_iValidCompareOptionMask_14;
// System.Data.SqlTypes.SqlCompareOptions System.Data.SqlTypes.SqlString::s_iValidSqlCompareOptionMask
int32_t ___s_iValidSqlCompareOptionMask_15;
// System.Int32 System.Data.SqlTypes.SqlString::s_lcidUSEnglish
int32_t ___s_lcidUSEnglish_16;
// System.Int32 System.Data.SqlTypes.SqlString::s_lcidBinary
int32_t ___s_lcidBinary_17;
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlString
struct SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_marshaled_pinvoke
{
char* ___m_value_0;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___m_cmpInfo_1;
int32_t ___m_lcid_2;
int32_t ___m_flag_3;
int32_t ___m_fNotNull_4;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlString
struct SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_marshaled_com
{
Il2CppChar* ___m_value_0;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___m_cmpInfo_1;
int32_t ___m_lcid_2;
int32_t ___m_flag_3;
int32_t ___m_fNotNull_4;
};
// System.ComponentModel.StringConverter
struct StringConverter_t1AE794D42AE414C00F2443B76F3EA694C310FF1E : public TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C
{
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// System.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// System.WeakReference
struct WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E : public RuntimeObject
{
// System.Boolean System.WeakReference::isLongReference
bool ___isLongReference_0;
// System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle
GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___gcHandle_1;
};
// System.Data.ExpressionParser/ReservedWords
struct ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87
{
// System.String System.Data.ExpressionParser/ReservedWords::_word
String_t* ____word_0;
// System.Data.Tokens System.Data.ExpressionParser/ReservedWords::_token
int32_t ____token_1;
// System.Int32 System.Data.ExpressionParser/ReservedWords::_op
int32_t ____op_2;
};
// Native definition for P/Invoke marshalling of System.Data.ExpressionParser/ReservedWords
struct ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87_marshaled_pinvoke
{
char* ____word_0;
int32_t ____token_1;
int32_t ____op_2;
};
// Native definition for COM marshalling of System.Data.ExpressionParser/ReservedWords
struct ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87_marshaled_com
{
Il2CppChar* ____word_0;
int32_t ____token_1;
int32_t ____op_2;
};
// System.Comparison`1<System.Data.DataRow>
struct Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0 : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.ArithmeticException
struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.ComponentModel.CollectionChangeEventHandler
struct CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50 : public MulticastDelegate_t
{
};
// System.Data.DataException
struct DataException_t1E99D3FCC3CF588E58AF44A54A2B111AB0CF0C6C : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Data.DataTableClearEventHandler
struct DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B : public MulticastDelegate_t
{
};
// System.Data.DataTableNewRowEventHandler
struct DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827 : public MulticastDelegate_t
{
};
// System.Data.DataTableTypeConverter
struct DataTableTypeConverter_t506CC2F52B4C3BDCA7B60DB91D9AC2620B07BCC7 : public ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2
{
};
// System.Data.DefaultValueTypeConverter
struct DefaultValueTypeConverter_t30873F22C066A99FB484DF367EDC7066639DED21 : public StringConverter_t1AE794D42AE414C00F2443B76F3EA694C310FF1E
{
};
// System.FormatException
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.InvalidCastException
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.ComponentModel.ListChangedEventHandler
struct ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616 : public MulticastDelegate_t
{
};
// System.NotSupportedException
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
// System.Object System.ArgumentOutOfRangeException::_actualValue
RuntimeObject* ____actualValue_19;
};
// System.Data.InvalidExpressionException
struct InvalidExpressionException_t65A0B84C5E8F1628BA2DCE9FF4D9B8E76D44F253 : public DataException_t1E99D3FCC3CF588E58AF44A54A2B111AB0CF0C6C
{
};
// System.OverflowException
struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C : public ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA
{
};
// System.Data.EvaluateException
struct EvaluateException_t78BD6A3F4B827B5CB5688268A536B3C304A6BC2C : public InvalidExpressionException_t65A0B84C5E8F1628BA2DCE9FF4D9B8E76D44F253
{
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
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.Data.DataTable[]
struct DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F : public RuntimeArray
{
ALIGN_FIELD (8) DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* m_Items[1];
inline DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07** 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, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Data.IndexField[]
struct IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E : public RuntimeArray
{
ALIGN_FIELD (8) IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795 m_Items[1];
inline IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795* 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, IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Column_0), (void*)NULL);
}
inline IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, IndexField_t6285D0782FB7D55EC60F7DFB20AF7D3E7D37B795 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Column_0), (void*)NULL);
}
};
// System.Data.DataRowView[]
struct DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D : public RuntimeArray
{
ALIGN_FIELD (8) DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* m_Items[1];
inline DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DataRowView_t51724505EADBB0C11EEA0252510644143191B23B** 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, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DataRowView_t51724505EADBB0C11EEA0252510644143191B23B** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.ComponentModel.PropertyDescriptor[]
struct PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321 : public RuntimeArray
{
ALIGN_FIELD (8) PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* m_Items[1];
inline PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381** 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_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1 : public RuntimeArray
{
ALIGN_FIELD (8) Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* m_Items[1];
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** 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_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
{
ALIGN_FIELD (8) String_t* m_Items[1];
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.Data.DataColumn[]
struct DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA : public RuntimeArray
{
ALIGN_FIELD (8) DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* m_Items[1];
inline DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66** 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, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Data.DataRow[]
struct DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4 : public RuntimeArray
{
ALIGN_FIELD (8) DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* m_Items[1];
inline DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388** 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, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
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.Data.ExpressionNode[]
struct ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8 : public RuntimeArray
{
ALIGN_FIELD (8) ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* m_Items[1];
inline ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31** 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, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
{
ALIGN_FIELD (8) Il2CppChar m_Items[1];
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Data.OperatorInfo[]
struct OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880 : public RuntimeArray
{
ALIGN_FIELD (8) OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* m_Items[1];
inline OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054** 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, OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Data.ExpressionParser/ReservedWords[]
struct ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2 : public RuntimeArray
{
ALIGN_FIELD (8) ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 m_Items[1];
inline ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87* 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, ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____word_0), (void*)NULL);
}
inline ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____word_0), (void*)NULL);
}
};
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
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.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Int32>(System.String,T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m32404E7D73A0E4C0184D32257009CA4A624F4A01_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, int32_t ___arg12, const RuntimeMethod* method) ;
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32,System.Int32>(System.String,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, int32_t ___arg22, const RuntimeMethod* method) ;
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32,System.Int32,System.Boolean>(System.String,T1,T2,T3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE5FA32168047F1999B971C07A883164385908734_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, int32_t ___arg22, bool ___arg33, const RuntimeMethod* method) ;
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32>(System.String,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32>(System.String,T0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Object,System.Object>(System.String,T0,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_m6F5D80BD8DFACB67B3F2F51CB474FB4FEBBBE1E7_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, RuntimeObject* ___arg12, RuntimeObject* ___arg23, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Object>(System.String,T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mCA145160EC3063BCC45C08271291BBF6EDA99195_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mB2760A703784902BE10E873BC760166EC9693D63_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Int32,System.Boolean>(System.String,T0,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m718893B6B36BADDCC09B48F8012725E6E3290D9C_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, int32_t ___arg12, bool ___arg23, 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_m4DDA9442C238A443489115E22B026AD366851549_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// K System.Data.RBTree`1/RBTreeEnumerator<System.Int32>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_gshared_inline (RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.RBTree`1/RBTreeEnumerator<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_gshared (RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Boolean>(System.String,T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m2EB458E05D438C75C7F06B31038832781860144B_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, bool ___arg12, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Int32Enum>(System.String,T0,T1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m3FDF4236396EAED81C2013076D04E0FE69629C4C_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, int32_t ___arg12, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mF67467217142A79C407188798209E4524D74D34F_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Object,System.Int32Enum>(System.String,T0,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mF7DCF61100F8891606890AD5A3CAEB3A643DD8E8_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, RuntimeObject* ___arg12, int32_t ___arg23, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32,System.Boolean>(System.String,T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF746EE443EAFA898B43983390F9AF6CBE4AF3B1_gshared (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, bool ___arg22, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<System.Object>::Contains(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<System.Int32>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Object>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// T[] System.Collections.Generic.List`1<System.Object>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataTable/RowDiffIdUsageSection::Prepare(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RowDiffIdUsageSection_Prepare_mBDBD6713E3628B7B82DAE6120A71F22101F20C51 (RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Data.DataTableCollection System.Data.DataSet::get_Tables()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* DataSet_get_Tables_m8F063F3CDD2BB72B97034D0CE1838EFBFA15AC61_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method) ;
// System.Data.DataTable System.Data.DataTableCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTableCollection_get_Item_mA833EDEEAE51765547DD6502A19B17CC07253636 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Data.DataTable/DSRowDiffIdUsageSection::Prepare(System.Data.DataSet)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DSRowDiffIdUsageSection_Prepare_m689D008112FF2DB8B420961739A18FA785ACBF42 (DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A* __this, DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ___ds0, const RuntimeMethod* method) ;
// System.Void System.EventArgs::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3 (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ;
// System.Int32 System.Threading.Interlocked::Increment(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_m7AC68EC482A6AFD97BCEFABA0FD45D203F3EA2E1 (int32_t* ___location0, const RuntimeMethod* method) ;
// System.Void System.Data.InternalDataCollectionBase::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalDataCollectionBase__ctor_mA52A35CF95468C3B6732B4BC2E3FF55C85E30954 (InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataTableCollection::get_ObjectID()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataSet::get_ObjectID()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataSet_get_ObjectID_mA76DF14B493013FD5E36F57ACA571D0A8C113489_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Int32>(System.String,T0,T1)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m32404E7D73A0E4C0184D32257009CA4A624F4A01 (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, int32_t ___arg12, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, int32_t, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m32404E7D73A0E4C0184D32257009CA4A624F4A01_gshared)(__this, ___format0, ___arg01, ___arg12, method);
}
// System.Exception System.Data.ExceptionBuilder::TableOutOfRange(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TableOutOfRange_mDF7D2B81FB87B9FBC45C032C41CEB03A4C894F2A (int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataTableCollection::InternalIndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_InternalIndexOf_m4BD1BBC79E931B4F155B465285260137CA8289A0 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___tableName0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::CaseInsensitiveNameConflict(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_CaseInsensitiveNameConflict_mCD5D9D0D88717C69F532B583BA4BF708F8AAF959 (String_t* ___name0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::NamespaceNameConflict(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_NamespaceNameConflict_m215542B0AB7A720A6C7D045828EBAD6AD9FF19BA (String_t* ___name0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::ArgumentNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8 (String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataTableCollection::InternalIndexOf(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_InternalIndexOf_mDD5C75581CC21D88E09CC24F30DE747BB97FC4CF (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___tableName0, String_t* ___tableNamespace1, const RuntimeMethod* method) ;
// System.String System.Data.DataTable::get_TableName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.String System.Data.DataTable::get_Namespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataTable::get_ObjectID()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataTable_get_ObjectID_m3A05B9B04446D482AE01B532B3A04146BD431358_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32,System.Int32>(System.String,T1,T2)
inline int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, int32_t ___arg22, const RuntimeMethod* method)
{
return (( int64_t (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, int32_t, const RuntimeMethod*))DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_gshared)(__this, ___format0, ___arg11, ___arg22, method);
}
// System.Void System.Data.DataCommonEventSource::ExitScope(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, int64_t ___scopeId0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.CollectionChangeEventArgs::.ctor(System.ComponentModel.CollectionChangeAction,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionChangeEventArgs__ctor_m84C25CBEFBE5495FD3FDB74C9F7A749979472218 (CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* __this, int32_t ___action0, RuntimeObject* ___element1, const RuntimeMethod* method) ;
// System.Void System.Data.DataTableCollection::OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_OnCollectionChanging_m133B97CEAB060F4FFAB8C873AA751BBFFF5E68DE (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___ccevent0, const RuntimeMethod* method) ;
// System.Void System.Data.DataTableCollection::BaseAdd(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.Data.DataTableCollection::ArrayAdd(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_ArrayAdd_mB7272B5750B4E3866886104D900E4BC2A6871D22 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Data.DataSet::get_Locale()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataTable::SetLocaleValue(System.Globalization.CultureInfo,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTable_SetLocaleValue_m9382ACADA75CC7CF166636BF30E557649DEF3515 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture0, bool ___userSet1, bool ___resetIndexes2, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataSet::get_CaseSensitive()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataSet_get_CaseSensitive_m1C6E7EA2660F8DBED741526A31364B6F979DD509_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataTable::SetCaseSensitiveValue(System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTable_SetCaseSensitiveValue_mD78875204000FA3294FB3E2E9D6AE8DA2B4203F4 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, bool ___isCaseSensitive0, bool ___userSet1, bool ___resetIndexes2, const RuntimeMethod* method) ;
// System.Void System.Data.DataTable::ResetIndexes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTable_ResetIndexes_mF8286588DBB31764E8688AEA1D6F8BD26F977186 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataTableCollection::OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_OnCollectionChanged_mFC70859DA76F247D014C1034201BADB25B64850A (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___ccevent0, const RuntimeMethod* method) ;
// System.String System.Data.DataTableCollection::MakeName(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataTableCollection_MakeName_m389F20E77B4C790421C6FC0A4F8C835B6BD2E591 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataTableCollection::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTableCollection_Contains_m9791EBF551DB0BAD26EA4DDEA095129DEF3606DE (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Data.DataSet System.Data.DataTable::get_DataSet()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::TableAlreadyInTheDataSet()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TableAlreadyInTheDataSet_m9309BAE156AA536966F79D9D048F850401267B36 (const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::TableAlreadyInOtherDataSet()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TableAlreadyInOtherDataSet_mF1C1372939E0AD812CD769872D8035BE80C2823A (const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.String System.Data.DataTableCollection::AssignName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataTableCollection_AssignName_m609DDC85D3B02B8734403C944D42135438479038 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataTable::set_TableName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTable_set_TableName_m999802721AE1265CA3501A84D81F99C8C71B7348 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String System.Data.DataSet::get_DataSetName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataSet_get_DataSetName_m53D20A0B757B364BB8B3287A74AAA7351EA02A45_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.InternalDataCollectionBase::NamesEqual(System.String,System.String,System.Boolean,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67 (InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2* __this, String_t* ___s10, String_t* ___s21, bool ___fCaseSensitive2, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___locale3, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::DatasetConflictingName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_DatasetConflictingName_m5627F463FDCDDB141823F912A08297C581CE3D5A (String_t* ___table0, const RuntimeMethod* method) ;
// System.Void System.Data.DataTableCollection::RegisterName(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_RegisterName_m0DD52F53E87B0B6A586D7B3B0669138DC2AAF23C (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, String_t* ___tbNamespace1, const RuntimeMethod* method) ;
// System.Void System.Data.DataTable::SetDataSet(System.Data.DataSet)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTable_SetDataSet_m5CCE20CF2D4CC2450BF312112022BD1A3D5CE541 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ___dataSet0, const RuntimeMethod* method) ;
// System.Void System.Data.DataTableCollection::BaseRemove(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_BaseRemove_mB50896DDDEDFCBA4F77F8C2BC619F5C38390C7D5 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataTableCollection::CanRemove(System.Data.DataTable,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, bool ___fThrowException1, const RuntimeMethod* method) ;
// System.Void System.Data.DataTableCollection::UnregisterName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_UnregisterName_m4819101CA72E68436C905A99559C3AADB0075F10 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Data.DataSet::OnRemovedTable(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataSet_OnRemovedTable_m17B5CF7FD7BC720D8A1D4272C62A732EB5792E0A (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32,System.Int32,System.Boolean>(System.String,T1,T2,T3)
inline int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE5FA32168047F1999B971C07A883164385908734 (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, int32_t ___arg22, bool ___arg33, const RuntimeMethod* method)
{
return (( int64_t (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, int32_t, bool, const RuntimeMethod*))DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE5FA32168047F1999B971C07A883164385908734_gshared)(__this, ___format0, ___arg11, ___arg22, ___arg33, method);
}
// System.Exception System.Data.ExceptionBuilder::TableNotInTheDataSet(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TableNotInTheDataSet_mE9A9D27942B26C84B9319E8033929BE203BD62FF (String_t* ___table0, const RuntimeMethod* method) ;
// System.Data.DataRelationCollection System.Data.DataTable::get_ChildRelations()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* DataTable_get_ChildRelations_mA020ACE26F7C7F02D1BA5A2BB81A6F2AD5F2EEAA (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Data.DataRelationCollection System.Data.DataTable::get_ParentRelations()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* DataTable_get_ParentRelations_m57FFCDEA0F8B8474FCEDA9B064A4875DE50498E9 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::TableInRelation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TableInRelation_m02389F65CFDC1F3A76053590A37D0566E8406FB6 (const RuntimeMethod* method) ;
// System.Void System.Data.ParentForeignKeyConstraintEnumerator::.ctor(System.Data.DataSet,System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParentForeignKeyConstraintEnumerator__ctor_mDD130D93A3B4F6E93B6A58515F2438CFEB35FE9B (ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6* __this, DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ___dataSet0, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___inTable1, const RuntimeMethod* method) ;
// System.Data.ForeignKeyConstraint System.Data.ForeignKeyConstraintEnumerator::GetForeignKeyConstraint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* ForeignKeyConstraintEnumerator_GetForeignKeyConstraint_m2165622858BB19977DFF9DF8DBBCC67DA5FB8A82 (ForeignKeyConstraintEnumerator_t73CDA7DF702057B15267DED0938C77C1DAE3544F* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::TableInConstraint(System.Data.DataTable,System.Data.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TableInConstraint_m13FE0B4CD9857651FE4FDBA7ADD79828270F3835 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, Constraint_t0A8908A502F0A089936D95EF44F76F9628CFB50A* ___constraint1, const RuntimeMethod* method) ;
// System.Boolean System.Data.ConstraintEnumerator::GetNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstraintEnumerator_GetNext_m9541A68CFEB06AFD94B46959827869945930F859 (ConstraintEnumerator_t449C9ABFA44F2D009B1672ACAE220DB0921BF2C0* __this, const RuntimeMethod* method) ;
// System.Void System.Data.ChildForeignKeyConstraintEnumerator::.ctor(System.Data.DataSet,System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChildForeignKeyConstraintEnumerator__ctor_m629B61F72445F16056B42E9BEDBF13C0C8433F8A (ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E* __this, DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ___dataSet0, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___inTable1, const RuntimeMethod* method) ;
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32>(System.String,T1)
inline int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286 (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, const RuntimeMethod* method)
{
return (( int64_t (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, const RuntimeMethod*))DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286_gshared)(__this, ___format0, ___arg11, method);
}
// System.Void System.Data.DataTableCollection::BaseGroupSwitch(System.Data.DataTable[],System.Int32,System.Data.DataTable[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_BaseGroupSwitch_m54E39B8C575169BE1CE7FBAE9F8C8FC9C7B6BACE (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* ___oldArray0, int32_t ___oldLength1, DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* ___newArray2, int32_t ___newLength3, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32>(System.String,T0)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_gshared)(__this, ___format0, ___arg01, method);
}
// System.Void System.ComponentModel.CollectionChangeEventHandler::Invoke(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CollectionChangeEventHandler_Invoke_m33B16A0A4D512CD9ED6ABC8C52D88BD5C05649C7_inline (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.String,System.String>(System.String,T0,T1,T2)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisString_t_mE6693D84E598664B7BCD1C2216B645A7338B2CC9 (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, String_t* ___arg12, String_t* ___arg23, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, String_t*, String_t*, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_m6F5D80BD8DFACB67B3F2F51CB474FB4FEBBBE1E7_gshared)(__this, ___format0, ___arg01, ___arg12, ___arg23, method);
}
// System.Exception System.Data.ExceptionBuilder::DuplicateTableName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_DuplicateTableName_mF505C059180B761E658EEE17D5F0648E402883F5 (String_t* ___table0, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.String>(System.String,T0,T1)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, String_t* ___arg12, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, String_t*, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mCA145160EC3063BCC45C08271291BBF6EDA99195_gshared)(__this, ___format0, ___arg01, ___arg12, method);
}
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.Data.DataTable System.Data.DataTablePropertyDescriptor::get_Table()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTablePropertyDescriptor_get_Table_m4992608072974C915D6645F46999E6461DE4FE0A_inline (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, const RuntimeMethod* method) ;
// System.Data.DataView System.Data.DataViewManagerListItemTypeDescriptor::GetDataView(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataView_t882C19B1455AFCE770D60A43A690096801824A50* DataViewManagerListItemTypeDescriptor_GetDataView_mD23D06B2ADDC338423BE268DD332E35FF6443BF0 (DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.ReferenceConverter::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReferenceConverter__ctor_mECD358A5C07B37EFD8659FDEF4C067A16E51171E (ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
inline void Dictionary_2__ctor_m2CADC0D4395DCE0CA7F2074C76E7E992A672B716 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_mB2760A703784902BE10E873BC760166EC9693D63_gshared)(__this, ___comparer0, method);
}
// System.Void System.ComponentModel.MarshalByValueComponent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent__ctor_mBB8FD86B5A8057E2B9EBAB10B43E4C394AE932A6 (MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA* __this, const RuntimeMethod* method) ;
// System.Void System.GC::SuppressFinalize(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m3352E2F2119EB46913B51B7AAE2F217C63C35F2A (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataView::get_ObjectID()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Int32,System.Boolean>(System.String,T0,T1,T2)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m718893B6B36BADDCC09B48F8012725E6E3290D9C (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, int32_t ___arg12, bool ___arg23, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, int32_t, bool, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m718893B6B36BADDCC09B48F8012725E6E3290D9C_gshared)(__this, ___format0, ___arg01, ___arg12, ___arg23, method);
}
// System.Void System.Data.DataViewListener::.ctor(System.Data.DataView)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener__ctor_m91A57DE8E30E954812E5623CC75FAB13539009E6 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, DataView_t882C19B1455AFCE770D60A43A690096801824A50* ___dv0, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewListener::RegisterMetaDataEvents(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_RegisterMetaDataEvents_mB1DC3C5FAD67F4BE3F14DC33733029BD5466264A (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::.ctor(System.Data.DataTable,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView__ctor_mA59D4A8E49FFC83CFDA8A39C806F8E2D08EC180E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, bool ___locked1, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::SetIndex2(System.String,System.Data.DataViewRowState,System.Data.IFilter,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_SetIndex2_mB117AC9FA8738D3FAFD9BE959C11F9703881100D (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___newSort0, int32_t ___newRowStates1, RuntimeObject* ___newRowFilter2, bool ___fireEvent3, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::get_Count()
inline int32_t Dictionary_2_get_Count_m59546C83F01C0149FDC1387278C8418672CE8AD4 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, const RuntimeMethod*))Dictionary_2_get_Count_m4DDA9442C238A443489115E22B026AD366851549_gshared)(__this, method);
}
// System.Int32 System.Data.Index::get_RecordCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Index_get_RecordCount_mD2C55E6DC12BC4F256C0B27D1A9FEB100C35A7FD_inline (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method) ;
// System.String System.Data.DataTable::FormatSortString(System.Data.IndexField[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataTable_FormatSortString_mB935B7535576880470341483E069B80550C2C42C (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* ___indexDesc0, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522 (const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Data.DataTable::get_Locale()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* DataTable_get_Locale_m7EE8F498C60742FFF844B132B3CC6054FBD5FB9F_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, 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_mCC9D98D7951772D5A6D2B1019F4077331C90E8C7 (String_t* ___strA0, String_t* ___strB1, bool ___ignoreCase2, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture3, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::CheckSort(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_CheckSort_m695B7CCB68A0F7AA4A7F60C131462F80824E3A07 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___sort0, const RuntimeMethod* method) ;
// System.Data.DataRowView System.Data.DataView::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* DataView_get_Item_m7B26A9946756E0C5FBC61F0F0C3757D5A70FBC41 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___recordIndex0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::SetIListObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_SetIListObject_mD33CCC8FB13C87DB866B871C65EB1DB177232387 (const RuntimeMethod* method) ;
// System.Data.DataRow System.Data.DataView::GetRow(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* DataView_GetRow_m77FAF760765CAB3D0A6C656FCA6056BB5C2044E8 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Data.DataRowView System.Data.DataView::GetRowView(System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* DataView_GetRowView_m5F953E3F3239D8779BAA63EF03490229AF274D69 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___dr0, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::CheckOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_CheckOpen_m55D2AF52D6B8F58B5E9AE5A1218E6B72DD91FDCC (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataView::get_AllowNew()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_AllowNew_mDF7F437DBF84B9DFF4DBD76F6287ED5F3BD46C7F_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::AddNewNotAllowNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_AddNewNotAllowNull_m9C79C9F63210857681781BE55878CCF802E942F9 (const RuntimeMethod* method) ;
// TValue System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::get_Item(TKey)
inline DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___key0, const RuntimeMethod* method)
{
return (( DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, const RuntimeMethod*))Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared)(__this, ___key0, method);
}
// System.Void System.Data.DataRowView::EndEdit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowView_EndEdit_m35008E223F1454A7D49C66FEB108CACAC77F9131 (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* __this, const RuntimeMethod* method) ;
// System.Data.DataRow System.Data.DataTable::NewRow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* DataTable_NewRow_m57151CE8F173A66E33B098CB580B5F5DE591CD02 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataRowView::.ctor(System.Data.DataView,System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowView__ctor_m55E3764B2780DE2A8F4711FA771BA2CBD5C64F08 (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* __this, DataView_t882C19B1455AFCE770D60A43A690096801824A50* ___dataView0, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::Add(TKey,TValue)
inline void Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___key0, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
}
// System.Int32 System.Data.DataView::IndexOf(System.Data.DataRowView)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_IndexOf_mCF9F78D1133272135627F8721FC9BA44B6FE45D5 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* ___rowview0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_mB48C0E1EBC7ECB9C9A1CEFBF1787D1C542FBDCAD (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, int32_t ___listChangedType0, int32_t ___newIndex1, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataView::get_IsOpen()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_IsOpen_m14F7E0B768826F8B6DCEC9DD35E793B48EFBC329_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::NotOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_NotOpen_m1C29CC0EF0C83823ED4CC9AA5BA774013461B654 (const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::CanNotUse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_CanNotUse_m58DADC10280FB642C2F153EEB7399149A4DC0F83 (const RuntimeMethod* method) ;
// System.Data.IndexField[] System.Data.DataTable::ParseSortString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* DataTable_ParseSortString_mC05B353F722490EAE5E0AAB7319B6C83EE302C0B (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, String_t* ___sortString0, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::UpdateIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_UpdateIndex_mE54C939B49008F8925922FED7366067C307D136E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewListener::UnregisterMetaDataEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_UnregisterMetaDataEvents_mF0324F4656B01F56D0881FCC605886CA510853BF (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, const RuntimeMethod* method) ;
// System.Data.RBTree`1/RBTreeEnumerator<System.Int32> System.Data.Index::GetEnumerator(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115 Index_GetEnumerator_mC4395747D82DE1E101FE3A76819F4A0CE3DB2DD8 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, int32_t ___startIndex0, const RuntimeMethod* method) ;
// K System.Data.RBTree`1/RBTreeEnumerator<System.Int32>::get_Current()
inline int32_t RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_inline (RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115*, const RuntimeMethod*))RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_gshared_inline)(__this, method);
}
// System.Data.DataRowView System.Data.DataView::GetRowView(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* DataView_GetRowView_m990B4DF8225F254F66057C60E115555774491BD3 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___record0, const RuntimeMethod* method) ;
// System.Void System.Array::SetValue(System.Object,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___value0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Boolean System.Data.RBTree`1/RBTreeEnumerator<System.Int32>::MoveNext()
inline bool RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173 (RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115* __this, const RuntimeMethod* method)
{
return (( bool (*) (RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115*, const RuntimeMethod*))RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_gshared)(__this, method);
}
// System.Void System.Data.DataView::Delete(System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Delete_m9724175AA44E8CB560E6BB5BADB6C8225CA0556E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::FinishAddNew(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_FinishAddNew_m6BCF307627EAD55E56D10C19B7B039B5BFF1ACA5 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, bool ___success0, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataView::get_AllowDelete()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_AllowDelete_mFCDC4B3CBA3FAD4D2EF81622AA449436338F30C4_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::CanNotDelete()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_CanNotDelete_m14F1B7D68CE63CC2CC378CEB43364A7CE261DD82 (const RuntimeMethod* method) ;
// System.Void System.Data.DataRow::Delete()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRow_Delete_m14B0BDEB2D6119E34523595F2A5041ACC2099392 (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Close_m3D70B96EB427F3C58F37933F91A32B9EB77CCD4E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.MarshalByValueComponent::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByValueComponent_Dispose_mFED5D8C2B4C60FD87882DBF792C052953BFE414D (MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA* __this, bool ___disposing0, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.Boolean>(System.String,T0,T1)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m2EB458E05D438C75C7F06B31038832781860144B (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, bool ___arg12, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, bool, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m2EB458E05D438C75C7F06B31038832781860144B_gshared)(__this, ___format0, ___arg01, ___arg12, method);
}
// System.Data.DataRowState System.Data.DataRow::get_RowState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataRow_get_RowState_mC30B0279854248F452C90798F2357EC99EBBA804 (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, const RuntimeMethod* method) ;
// System.Data.DataRowCollection System.Data.DataTable::get_Rows()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* DataTable_get_Rows_m494EC146C4A26B22D334DE155CF3D68CE30CE718_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataRowCollection::Add(System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowCollection_Add_m2A36F7D52ED197BAF8002FECCA560B8AC6A28730 (DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, const RuntimeMethod* method) ;
// System.Void System.Data.DataRow::EndEdit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRow_EndEdit_mFC2758E07775FB6566376C29E5046DE704838339 (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::Remove(TKey)
inline bool Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___key0, method);
}
// System.Void System.Data.DataRow::CancelEdit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRow_CancelEdit_m5D68C21B873F1DD9376611340A28D46994556D6D (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataView::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::CopyTo(System.Data.DataRowView[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_CopyTo_m82053F50915E7ABA51D0DF4A72E19E16DDA5D466 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* ___array0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Collections.IEnumerator System.Array::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::AddExternalObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_AddExternalObject_m301541CC0506BCE9BD369BE9B72C930E952C7918 (const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::CanNotClear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_CanNotClear_m231D8022661691158DEE87EC8CF5E699AF297153 (const RuntimeMethod* method) ;
// System.Data.DataRow System.Data.DataRowView::get_Row()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* DataRowView_get_Row_m784F137A476C6D40C82584E6768B23CE2EA97B77_inline (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___key0, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// System.Int32 System.Data.DataView::IndexOfDataRowView(System.Data.DataRowView)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_IndexOfDataRowView_m865FCBD09ED5D4A0E640F9898BAC6DD94BCD6C86 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* ___rowview0, const RuntimeMethod* method) ;
// System.Data.DataViewRowState System.Data.DataView::get_RowStateFilter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataView_get_RowStateFilter_m63C6B3298EA30EF2D05CEBE0D11A09AEE4918C4F_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Data.DataRowVersion System.Data.DataRow::GetDefaultRowVersion(System.Data.DataViewRowState)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataRow_GetDefaultRowVersion_m7617AFBD6951171D809A427ECE10D6CCD18B8DAC (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, int32_t ___viewState0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataRow::GetRecordFromVersion(System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataRow_GetRecordFromVersion_mDE75DD659D7DFF8FF190F2DD1B8C5692F2DFCFE6 (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, int32_t ___version0, const RuntimeMethod* method) ;
// System.Int32 System.Data.Index::GetIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Index_GetIndex_m0A03BD15B022760DF3FB6DCAF7C982614BF25CB8 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, int32_t ___record0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::InsertExternalObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_InsertExternalObject_m2524F482B35EEF71339A8ABF7339F006E19B4C8B (const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::RemoveExternalObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_RemoveExternalObject_mE00A986D7B04A76416B6281588A3274A9BFFA7C3 (const RuntimeMethod* method) ;
// System.Void System.Data.DataView::Delete(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Delete_mAE611B0F78E78CE4B1459120F0B026B9F864AF79 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Data.Index>::.ctor()
inline void Dictionary_2__ctor_mF6961A0758A1E86DAA55E7D12F543C9DC65973F3 (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Data.Index>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* __this, String_t* ___key0, Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*, String_t*, Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Data.Index>::Remove(TKey)
inline bool Dictionary_2_Remove_m31CF416326CE844F20810407046CB7ABD222D8A4 (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* __this, String_t* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___key0, method);
}
// System.Int32 System.Data.Index::RemoveRef()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.Index::get_RefCount()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Index_get_RefCount_m16AD66DC00C931B2096C8180EA7BE490DD3DBC65_inline (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method) ;
// System.Data.Index System.Data.DataTable::GetIndex(System.String,System.Data.DataViewRowState,System.Data.IFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* DataTable_GetIndex_mA5067E41B234326D6ED70E2F129AA7C867BB4CC9 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, String_t* ___sort0, int32_t ___recordStates1, RuntimeObject* ___rowFilter2, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Data.Index>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_m556957D0C784BE83E179BCFEDBE4585984DD2A25 (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* __this, String_t* ___key0, Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*, String_t*, Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Data.Index::AddRef()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Index_AddRef_m1B6D7FF926143B923B53EED1C2007739D3D6D421 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataView::get_AllowEdit()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_AllowEdit_m30F56486FC5FACCDC04ECEE8214A4E15D53DC0D1_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.String System.Data.DataView::get_Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataView_get_Sort_m4864794D5203372CB5BD5E666E7D7DBA2CCE01AE (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.ComponentModel.PropertyDescriptor System.Data.DataView::GetSortProperty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* DataView_GetSortProperty_m72781C5116921EC3A76B6CC0F17D5085B62FDC1E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataColumnPropertyDescriptor::.ctor(System.Data.DataColumn)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataColumnPropertyDescriptor__ctor_mA391445FC10FF08FE19D98B03B0D74EEDB8F574C (DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___dataColumn0, const RuntimeMethod* method) ;
// System.Data.Index System.Data.DataView::GetFindIndex(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* DataView_GetFindIndex_m4AA59AAF1BD95EEE647B3A2879D4DDB1AB1DC759 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___column0, bool ___keepIndex1, const RuntimeMethod* method) ;
// System.String System.Data.DataView::CreateSortString(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataView_CreateSortString_m9B65316F651021D0E949831DC9348119E4281BEB (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___property0, int32_t ___direction1, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::set_Sort(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_set_Sort_mBC381FD380638576BE18CEF1FD041415A52358C2 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Data.Range System.Data.Index::FindRecords(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB Index_FindRecords_mBF148B62588255E4E25835F2965A45B28348B019 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
// System.Boolean System.Data.Range::get_IsNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Range_get_IsNull_m7024C635D7C6D09F1ABBAA1D04E409CAB113FB68 (Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.Range::get_Min()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Range_get_Min_m92B3060A125786BAFDB828CF276DAC61743957B9 (Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.Index::GetRecord(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Index_GetRecord_m8394B5ABD0C9762A340533A441A204A920718EA1 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, int32_t ___recordIndex0, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Data.DataTable System.Data.DataSet::FindTable(System.Data.DataTable,System.ComponentModel.PropertyDescriptor[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataSet_FindTable_m5896111DB1702F7A7164438C9EA7AC3E15822C99 (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___baseTable0, PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* ___props1, int32_t ___propStart2, const RuntimeMethod* method) ;
// System.ComponentModel.PropertyDescriptorCollection System.Data.DataTable::GetPropertyDescriptorCollection(System.Attribute[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* DataTable_GetPropertyDescriptorCollection_mC9F32F002D01468B9DD5D512CDB0EC09A893FDF5 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* ___attributes0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.PropertyDescriptorCollection::.ctor(System.ComponentModel.PropertyDescriptor[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyDescriptorCollection__ctor_m3D1AC0D2B3187A895AE8B64AC891251860D8C361 (PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* __this, PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* ___properties0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::RowOutOfRange(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_RowOutOfRange_mE4D303B21CA0AC3A6F20E09AA7ABF68AF89BB5A2 (int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataRow::GetDefaultRecord()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataRow_GetDefaultRecord_mD5D5E39FAD5E6F12A257BD92CC372BDBB1323DA8 (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::GetElementIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_GetElementIndex_m04A569444F4B592D15890F2212F617B5897416B0 (int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataView::GetRecord(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_GetRecord_m22F0361A6942F721ADBAC2413AF3D61E7E0E648E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___recordIndex0, const RuntimeMethod* method) ;
// System.Data.DataRow System.Data.RecordManager::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* RecordManager_get_Item_m0CF3CD1A1AA50D55743F52024BC059DAC1CBCE62 (RecordManager_t5525269209BE5391607F8C811470AC2EC5C8FA4A* __this, int32_t ___record0, const RuntimeMethod* method) ;
// System.ComponentModel.ListChangedType System.ComponentModel.ListChangedEventArgs::get_ListChangedType()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::Clear()
inline void Dictionary_2_Clear_m5E3A035271CAE9A9CE6FEA33AEDB4068144FEC1C (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, const RuntimeMethod*))Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared)(__this, method);
}
// System.Int32 System.ComponentModel.ListChangedEventArgs::get_NewIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, const RuntimeMethod* method) ;
// System.Int32 System.ComponentModel.ListChangedEventArgs::get_OldIndex()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_OldIndex_m1FBD245795E09E5BCD0889DC405F1D5260389244_inline (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m51CD8C20F924174FDAE0CED36B57E8A53AFBBDA5 (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, int32_t ___listChangedType0, int32_t ___newIndex1, int32_t ___oldIndex2, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::ContainsKey(TKey)
inline bool Dictionary_2_ContainsKey_m411AF3E7B18139A040C507E711CBD6639471ED88 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___key0, method);
}
// System.Void System.Data.DataView::ResetRowViewCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ResetRowViewCache_m6F9EBE3978EBB10A72C48AEB4274C47C0DA9C5F9 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.ComponentModel.ListChangedType>(System.String,T0,T1)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisListChangedType_t50F7E1359B1B64CCB72B35EA42266BF90E79107A_m435AF3413637EA04D8216A4D1A9A8C774A3873FB (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, int32_t ___arg12, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, int32_t, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m3FDF4236396EAED81C2013076D04E0FE69629C4C_gshared)(__this, ___format0, ___arg01, ___arg12, method);
}
// System.Boolean System.Data.DataRow::get_HasPropertyChanged()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataRow_get_HasPropertyChanged_m1045702A049D4C4D1418A3CB262F54A80E15ADD1 (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, const RuntimeMethod* method) ;
// System.Data.DataColumn System.Data.DataRow::get_LastChangedColumn()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* DataRow_get_LastChangedColumn_m954BC4A0BF28E06E73D8F246F3E20D3A067A966F (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, const RuntimeMethod* method) ;
// System.String System.Data.DataColumn::get_ColumnName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataColumn_get_ColumnName_mDCFFC7BE298F91C064BFBA74E581C2B7D99C7D99_inline (DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* __this, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_mDDD788CA53FC321053AF57EA31AFC5F71C1AB83A (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, int32_t ___listChangedType0, int32_t ___newIndex1, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___propDesc2, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.ListChangedEventHandler::Invoke(System.Object,System.ComponentModel.ListChangedEventArgs)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListChangedEventHandler_Invoke_mA0F0B8AB273C63F017018390414C334FD602934E_inline (ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616* __this, RuntimeObject* ___sender0, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e1, const RuntimeMethod* method) ;
// System.Void System.Data.DataRowView::RaisePropertyChangedEvent(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowView_RaisePropertyChangedEvent_m0C2DC13FD01CD4054432539159F9CB4421F3A582 (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* __this, String_t* ___propName0, const RuntimeMethod* method) ;
// System.Boolean System.Data.Common.ADP::IsCatchableExceptionType(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ADP_IsCatchableExceptionType_m7A0C2618DCBDE0DC74A29D0AF2FE50CAD9DEB4B2 (Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::TraceExceptionWithoutRethrow(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125 (Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Void System.Data.Index::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Index_Reset_m95D817B7DAE23AAE2F869575CADAC2FA43C14841 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataView::get_CountFromIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_get_CountFromIndex_m5D41A7E127042D03FCD9B7118DA259B1CB69740D (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Dictionary`2<System.Data.DataRow,System.Data.DataRowView>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<TKey>)
inline void Dictionary_2__ctor_mC84A7D6E40F5394E04857E6C72F2B4C841D1CFF4 (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* __this, int32_t ___capacity0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*, int32_t, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_mF67467217142A79C407188798209E4524D74D34F_gshared)(__this, ___capacity0, ___comparer1, method);
}
// System.Data.DataViewSettingCollection System.Data.DataViewManager::get_DataViewSettings()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* DataViewManager_get_DataViewSettings_m06DB0B13FD16F6D9FD564EBCD3A8BE66050C166D_inline (DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataViewSetting::get_ApplyDefaultSort()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataViewSetting_get_ApplyDefaultSort_m429025C4A76C3D7B08D1D3AA8BA7A77DDD4C0528_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method) ;
// System.String System.Data.DataViewSetting::get_RowFilter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataViewSetting_get_RowFilter_mAD32BA676924256BBB3F0EA1F1ED95FA3AFD3138_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataExpression::.ctor(System.Data.DataTable,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataExpression__ctor_m30E975EC6FE2D7B35A258FB4BDC789EF24F6C765 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, String_t* ___expression1, const RuntimeMethod* method) ;
// System.String System.Data.DataViewSetting::get_Sort()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataViewSetting_get_Sort_m75FA10BA44DC585A3CDF9F58A5434841669A6AB3_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method) ;
// System.Data.DataViewRowState System.Data.DataViewSetting::get_RowStateFilter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataViewSetting_get_RowStateFilter_m354B304117778ACFBA05942D4BD186FADCF8D1F9_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataCommonEventSource::Trace<System.Int32,System.String,System.Data.DataViewRowState>(System.String,T0,T1,T2)
inline void DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisDataViewRowState_tE38561F1E9C47E76575D2912569A48AC9470665D_m7984C8D0468CC78020D359E51665098E7C0B1038 (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg01, String_t* ___arg12, int32_t ___arg23, const RuntimeMethod* method)
{
(( void (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, String_t*, int32_t, const RuntimeMethod*))DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_mF7DCF61100F8891606890AD5A3CAEB3A643DD8E8_gshared)(__this, ___format0, ___arg01, ___arg12, ___arg23, method);
}
// System.Void System.Data.DataView::UpdateIndex(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_UpdateIndex_mA6AD3871E12347DFC3B76E6D2C02F371F528B3E9 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, bool ___force0, bool ___fireEvent1, const RuntimeMethod* method) ;
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.Data.Index>::GetEnumerator()
inline Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC Dictionary_2_GetEnumerator_mF8214D31031B8B278E01B1E971079356E0EFBC99 (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* __this, const RuntimeMethod* method)
{
return (( Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC (*) (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.Data.Index>::Dispose()
inline void Enumerator_Dispose_m0FBB493C4EADB3AA57D09A4332D6E411B0FC07E0 (Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC*, const RuntimeMethod*))Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.Data.Index>::get_Current()
inline KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8 Enumerator_get_Current_m8570A6D3487D7C6791BA7BAE24196B50FE316111_inline (Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC* __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8 (*) (Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC*, const RuntimeMethod*))Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.String,System.Data.Index>::get_Value()
inline Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* KeyValuePair_2_get_Value_m8E2A174A565FA8871770580501252B0A7DC65B34_inline (KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8* __this, const RuntimeMethod* method)
{
return (( Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* (*) (KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.Data.Index>::MoveNext()
inline bool Enumerator_MoveNext_m6DB0C08828C9EE44C7B28E0374E0C8E101782B74 (Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC*, const RuntimeMethod*))Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared)(__this, method);
}
// System.Int64 System.Data.DataCommonEventSource::EnterScope<System.Int32,System.Boolean>(System.String,T1,T2)
inline int64_t DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF746EE443EAFA898B43983390F9AF6CBE4AF3B1 (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* __this, String_t* ___format0, int32_t ___arg11, bool ___arg22, const RuntimeMethod* method)
{
return (( int64_t (*) (DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE*, String_t*, int32_t, bool, const RuntimeMethod*))DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF746EE443EAFA898B43983390F9AF6CBE4AF3B1_gshared)(__this, ___format0, ___arg11, ___arg22, method);
}
// System.Comparison`1<System.Data.DataRow> System.Data.DataView::get_SortComparison()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* DataView_get_SortComparison_m4DBE1F7E1797CD5BB969AFED404D600738493860_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method) ;
// System.Void System.Data.Index::.ctor(System.Data.DataTable,System.Comparison`1<System.Data.DataRow>,System.Data.DataViewRowState,System.Data.IFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Index__ctor_m0A290157A4B83396145E525BF80D7178D17E3EED (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* ___comparison1, int32_t ___recordStates2, RuntimeObject* ___rowFilter3, const RuntimeMethod* method) ;
// System.Data.DataTable System.Data.Index::get_Table()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* Index_get_Table_m7AE1679CC513F0971C6AF5043988B037A8347F47_inline (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewListener::UnregisterListChangedEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_UnregisterListChangedEvent_mFDA7BAA57739ABA5C22708E0D1EB14D91264247A (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewListener::RegisterListChangedEvent(System.Data.Index)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_RegisterListChangedEvent_m2B3E7E2A06B97977F776794A3C66967D362AF5F4 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ___index0, const RuntimeMethod* method) ;
// System.Void System.Data.DataRelationPropertyDescriptor::.ctor(System.Data.DataRelation)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRelationPropertyDescriptor__ctor_mD270E4BD1165D1CB36963D8F5D32704362C27553 (DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* __this, DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ___dataRelation0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.ListChangedEventArgs::.ctor(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48 (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, int32_t ___listChangedType0, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___propDesc1, const RuntimeMethod* method) ;
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataView/DataRowReferenceComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowReferenceComparer__ctor_m5F9BC256C3C87F9FE47C9D11F7B3EA58BE410CB2 (DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* __this, const RuntimeMethod* method) ;
// System.Void System.WeakReference::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241 (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* __this, RuntimeObject* ___target0, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::ChildRelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ChildRelationCollectionChanged_m5CAF1CBE58EF2AB38AF4693A5CC6A373C634C444 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewListener::CleanUp(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, bool ___updateListeners0, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::ParentRelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ParentRelationCollectionChanged_mCBEBA9A17C64416B00C06191119CABAD95C7434C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::ColumnCollectionChangedInternal(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ColumnCollectionChangedInternal_m51E1A1DD871AC8F94070A35EC6EE04CC7741CB1C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::MaintainDataView(System.ComponentModel.ListChangedType,System.Data.DataRow,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_MaintainDataView_m31906603E66E34095B2F39D7CAE05AEA2D3EF105 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___changedType0, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row1, bool ___trackAddRemove2, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::IndexListChangedInternal(System.ComponentModel.ListChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_IndexListChangedInternal_m9E10A81FCAAA0FAD57CD4465BB6D50082318CF3F (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e0, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewListener::RegisterListener(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_RegisterListener_mED828372A7976C6BF7C7C6C35F6B5C43760B5A09 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.CollectionChangeEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionChangeEventHandler__ctor_mD156314A1775DD9DD858912216685A469D6E2D8C (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Data.DataColumnCollection System.Data.DataTable::get_Columns()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* DataTable_get_Columns_mF03D7E14E2C43C9B80521C00ABD8CBE7EA19772E_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataColumnCollection::add_ColumnPropertyChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataColumnCollection_add_ColumnPropertyChanged_m8DFB152167E1E5D0AA1E6CE7B0AC8AEFAC693EF0 (DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.DataColumnCollection::add_CollectionChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataColumnCollection_add_CollectionChanged_m0291CB740DE6FA0D2D635EC07A209200CEC607B6 (DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.DataRelationCollection/DataTableRelationCollection::add_RelationPropertyChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableRelationCollection_add_RelationPropertyChanged_mB7656CF34B6A980C43D3548F657C86CF2C779977 (DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.DataRelationCollection::add_CollectionChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRelationCollection_add_CollectionChanged_m20A6E0F403AFEA3560514A103C8A6BD702CFDAAE (DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewListener::UnregisterMetaDataEvents(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_UnregisterMetaDataEvents_m2757DDB241A5C274F9F7AB983FDC7CD738B84505 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, bool ___updateListeners0, const RuntimeMethod* method) ;
// System.Void System.Data.DataColumnCollection::remove_ColumnPropertyChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataColumnCollection_remove_ColumnPropertyChanged_m0D7470BB1A38362A7D05D3225E4ECED1984F3718 (DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.DataColumnCollection::remove_CollectionChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataColumnCollection_remove_CollectionChanged_m108F99EA6D32E27EE6A7F024E95512A4DB64A03B (DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.DataRelationCollection/DataTableRelationCollection::remove_RelationPropertyChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableRelationCollection_remove_RelationPropertyChanged_mC8D7F82AC3DCBEB359FD3AAF24209C665B39EB97 (DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.DataRelationCollection::remove_CollectionChanged(System.ComponentModel.CollectionChangeEventHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRelationCollection_remove_CollectionChanged_mF9485FD4AAB54083C072E5E96434A0FD01620C05 (DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* __this, CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1<System.Data.DataViewListener> System.Data.DataTable::GetListeners()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* DataTable_GetListeners_m2FBA4FF6A7377D4EB968877410B144B626FF2D08_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<System.Data.DataViewListener>::Remove(T)
inline bool List_1_Remove_m21F079D59F9CA562CE729468C726EDBA76744E6C (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* __this, DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F*, DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___item0, method);
}
// System.Void System.Data.Index::ListChangedAdd(System.Data.DataViewListener)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Index_ListChangedAdd_m1334B0568F908F36F4C85B375E2070556EA6E62F (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* ___listener0, const RuntimeMethod* method) ;
// System.Void System.Data.Index::ListChangedRemove(System.Data.DataViewListener)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Index_ListChangedRemove_m6016C73390C4329F13E3D0AEBBECA6FF3B5E4204 (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* ___listener0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Data.DataViewListener>::get_Count()
inline int32_t List_1_get_Count_m9ABD8C2025D83ACC7FEA8E5BE103F60BE83BD06E_inline (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Data.DataViewListener>::get_Item(System.Int32)
inline DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* List_1_get_Item_mEBB86FFDACA9BA0D38A48D31630B564F89A089F9 (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* (*) (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<System.Data.DataViewListener>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_m824418EC4D37188845EB64F7948FC7C9CDF554A6 (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
}
// System.Void System.Collections.Generic.List`1<System.Data.DataViewListener>::Add(T)
inline void List_1_Add_mBC48C78C362E58DF20F4A1B151AA1D37380DE29B_inline (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* __this, DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F*, DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::.ctor(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView__ctor_mC14F2AA8E78DE584CBA9718B35426CA498940688 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.Data.DataView::SetDataViewManager(System.Data.DataViewManager)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_SetDataViewManager_m1B91C695741ACAEB75CA31E9DE4DB825D243D596 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ___dataViewManager0, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewSetting::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSetting__ctor_mAA277AB240699FC9F0F00B3764475A2E87B7A3C9 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewSetting::SetDataViewManager(System.Data.DataViewManager)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSetting_SetDataViewManager_mFEBBD3EDEF92793C0A82B2EB2A260C31818820DD (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ___dataViewManager0, const RuntimeMethod* method) ;
// System.Void System.Data.DataViewSetting::SetDataTable(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSetting_SetDataTable_m25981820DC89441406B24AFADCA2C6AE717A5FF0 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.ComponentModel.StringConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConverter__ctor_m074D8686ED6ABC0E64C20D1EFD4406F215E7187A (StringConverter_t1AE794D42AE414C00F2443B76F3EA694C310FF1E* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __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_m5D4785A320B7ED351B677E28B77171F70E389B96 (TypeConverter_t5257E1653EB845D0044BBEDEB7B8AED7A061592C* __this, RuntimeObject* ___context0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, RuntimeObject* ___value2, Type_t* ___destinationType3, const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::Equals(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method) ;
// System.Object System.ComponentModel.StringConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StringConverter_ConvertFrom_mDC2BBDD289C8D8259AF915CB23765888BBFAB9AC (StringConverter_t1AE794D42AE414C00F2443B76F3EA694C310FF1E* __this, RuntimeObject* ___context0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, RuntimeObject* ___value2, const RuntimeMethod* method) ;
// System.Void System.Data.AggregateNode::.ctor(System.Data.DataTable,System.Data.FunctionId,System.String,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateNode__ctor_m17BD752374AEA6599A53DAE3114FBC1FA4EA7298 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___aggregateType1, String_t* ___columnName2, bool ___local3, String_t* ___relationName4, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionNode::.ctor(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionNode__ctor_m283F3264481483CC47247AF2E8E012F055616698 (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::UndefinedFunction(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_UndefinedFunction_m40C16992B6AAAE390CFD7B26EC917B22B7152E77 (String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionNode::BindTable(System.Data.DataTable)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExpressionNode_BindTable_mE73D14C3A5AD6BBEAECD63E90C3828CB21DC71DC_inline (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::AggregateUnbound(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_AggregateUnbound_m9B6C3E353D158CBCFB08A73E8D02B0CCC648CB12 (String_t* ___expr0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::UnresolvedRelation(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_UnresolvedRelation_mC31C15BBB62738835B1157267FBF5FB754112A37 (String_t* ___name0, String_t* ___expr1, const RuntimeMethod* method) ;
// System.Data.DataColumn System.Data.DataColumnCollection::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* DataColumnCollection_get_Item_m986CAEFDCA2DD4B16E1AC08A443345CDEF53906A (DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::UnboundName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_UnboundName_mAB678946D776975A33D8D3D33BA8577E8ECAB68F (String_t* ___name0, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Data.DataColumn>::get_Item(System.Int32)
inline DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* List_1_get_Item_m59541DD27A7650B8C1CF8BEE5229F1D86A6048EA (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* (*) (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Data.DataColumn>::get_Count()
inline int32_t List_1_get_Count_mD738A1974F4AE98C9B6146701996ABD2F0B17962_inline (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Data.DataColumn>::Add(T)
inline void List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_inline (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785*, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Data.AggregateNode::Bind(System.Data.DataRelation,System.Collections.Generic.List`1<System.Data.DataColumn>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateNode_Bind_mB02C46708D2599FBDE9D9ED72FD6632C25C9BD6E (DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ___relation0, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* ___list1, const RuntimeMethod* method) ;
// System.Data.DataColumn[] System.Data.DataRelation::get_ChildColumnsReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* DataRelation_get_ChildColumnsReference_m267BF7710ACF045C163C0B9CA37DD85C83F739DD (DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1<System.Data.DataColumn>::Contains(T)
inline bool List_1_Contains_mC7ECF3C7C9EB3347B47B645B57FD5DBF23394D09 (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___item0, const RuntimeMethod* method)
{
return (( bool (*) (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785*, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*, const RuntimeMethod*))List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared)(__this, ___item0, method);
}
// System.Data.DataColumn[] System.Data.DataRelation::get_ParentColumnsReference()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* DataRelation_get_ParentColumnsReference_m82521483F7AD557ED56A53403C7123910F90FB73 (DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataRowCollection::CopyTo(System.Data.DataRow[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowCollection_CopyTo_m09F657EB4150DA12C50B1B132478B99AE170E7EA (DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* __this, DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* ___array0, int32_t ___index1, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::EvalNoContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_EvalNoContext_m159C5C0BE543E1C12C1EFA094BBDD663935228B2 (const RuntimeMethod* method) ;
// System.Data.DataRow[] System.Data.DataRow::GetChildRows(System.Data.DataRelation,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* DataRow_GetChildRows_mA876C52791BC9C7C39831600A87F437865DBA261 (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* __this, DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ___relation0, int32_t ___version1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor()
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___item0, method);
}
// T[] System.Collections.Generic.List`1<System.Int32>::ToArray()
inline Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
{
return (( Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_gshared)(__this, method);
}
// System.Object System.Data.DataColumn::GetAggregateValue(System.Int32[],System.Data.AggregateType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataColumn_GetAggregateValue_m2CA7CEAA95170D432903603FF1BA208A3AE1576C (DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___records0, int32_t ___kind1, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::ComputeNotAggregate(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_ComputeNotAggregate_m5B230D5B31D8BFACD541E56A0CEDF4E63E1A758D (String_t* ___expr0, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataColumn::get_Computed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataColumn_get_Computed_mEBBC8746B8F8EE6AF8EC3FAE7DD4E53A6F10B63F (DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* __this, const RuntimeMethod* method) ;
// System.Data.DataExpression System.Data.DataColumn::get_DataExpression()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* DataColumn_get_DataExpression_m4FA8DB2F5119D7850DACC69EAA5852ED4B9D952F_inline (DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataExpression::DependsOn(System.Data.DataColumn)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_DependsOn_m6CD29A2494D572F8247B196CD4B0399B1CD71659 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___column0, const RuntimeMethod* method) ;
// System.Object System.Data.BinaryNode::EvalBinaryOp(System.Int32,System.Data.ExpressionNode,System.Data.ExpressionNode,System.Data.DataRow,System.Data.DataRowVersion,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___op0, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___left1, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___right2, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row3, int32_t ___version4, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___recordNos5, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::InvalidIsSyntax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_InvalidIsSyntax_m0E4911FA30A79662957C5B8EF2D697323B663DB7 (const RuntimeMethod* method) ;
// System.Void System.Data.ZeroOpNode::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZeroOpNode__ctor_m8C49A46AA06B141B47B0C18B78C226746F190F8A (ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8* __this, int32_t ___op0, const RuntimeMethod* method) ;
// System.Data.DataTable System.Data.ExpressionNode::get_table()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, const RuntimeMethod* method) ;
// System.Void System.Data.ConstNode::.ctor(System.Data.DataTable,System.Data.ValueType,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstNode__ctor_m68472F28A01DAD79B5E27F449076A6B72365F7F5 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___type1, RuntimeObject* ___constant2, bool ___fParseQuotes3, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::TypeMismatchInBinop(System.Int32,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_TypeMismatchInBinop_m08F80656E1BB4BDCB282D48CC12E6403CAE5AA07 (int32_t ___op0, Type_t* ___type11, Type_t* ___type22, const RuntimeMethod* method) ;
// System.Int32 System.Data.BinaryNode::BinaryCompare(System.Object,System.Object,System.Data.Common.StorageType,System.Int32,System.Globalization.CompareInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_BinaryCompare_mDC2D0329D35F766A3B6B920B969F4562B0F5F612 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, RuntimeObject* ___vLeft0, RuntimeObject* ___vRight1, int32_t ___resultType2, int32_t ___op3, CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___comparer4, const RuntimeMethod* method) ;
// System.Boolean System.Data.Common.DataStorage::IsSqlType(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataStorage_IsSqlType_m7FA180A7030104A7D160A660F70CD1F028181B7A (int32_t ___storageType0, const RuntimeMethod* method) ;
// System.IFormatProvider System.Data.ExpressionNode::get_FormatProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, const RuntimeMethod* method) ;
// System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.Decimal::Compare(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decimal_Compare_m89C67966A7B02A387B3A2E97A91D8BFA7739154A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.Double::CompareTo(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC (double* __this, double ___value0, const RuntimeMethod* method) ;
// System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.Single::CompareTo(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F (float* __this, float ___value0, const RuntimeMethod* method) ;
// System.DateTime System.Convert::ToDateTime(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Convert_ToDateTime_m61905AF8CBAC88A4891F90E763A1EFAE8B3EA74E (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.DateTime::Compare(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_Compare_mFE3B56B438BCB6AB84E3A9042F2D4970AB47F10A (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t21, const RuntimeMethod* method) ;
// System.Int32 System.DateTimeOffset::Compare(System.DateTimeOffset,System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTimeOffset_Compare_m2AC1068CD8EC333D682FCA7E11A32A0D0658C2EF (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___first0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___second1, const RuntimeMethod* method) ;
// System.String System.Convert::ToString(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mCC5DC13CDF7E338DB15699432F28477C7DF52DE1 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataTable::Compare(System.String,System.String,System.Globalization.CompareInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTable_Compare_m3CB295A5FD7745849E5BC332C4B21152A05E67E3 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, String_t* ___s10, String_t* ___s21, CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___comparer2, const RuntimeMethod* method) ;
// System.Int32 System.Guid::CompareTo(System.Guid)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Guid_CompareTo_mC22A00A14BBCCBF55F303C89A567FCA43925B586 (Guid_t* __this, Guid_t ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataExpression::ToBoolean(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt32 System.Data.Common.SqlConvert::ConvertToSqlInt32(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlInt32::CompareTo(System.Data.SqlTypes.SqlInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlInt32_CompareTo_m6EBE0A1AACF4E5C44E76D91D6FD6A5FC655C164B (SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152* __this, SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt64 System.Data.Common.SqlConvert::ConvertToSqlInt64(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlInt64::CompareTo(System.Data.SqlTypes.SqlInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlInt64_CompareTo_m73C81296C591620BBCDD8A084418A0539EF68FEC (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272* __this, SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDecimal System.Data.Common.SqlConvert::ConvertToSqlDecimal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlDecimal::CompareTo(System.Data.SqlTypes.SqlDecimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlDecimal_CompareTo_m0100ACFA5FBF6023915A5ADC06B9C15BB9F7C4F2 (SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406* __this, SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDouble System.Data.Common.SqlConvert::ConvertToSqlDouble(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlDouble::CompareTo(System.Data.SqlTypes.SqlDouble)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlDouble_CompareTo_mE79F43FB35FAC5959E985E45CDB0122A91CAA554 (SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98* __this, SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlSingle System.Data.Common.SqlConvert::ConvertToSqlSingle(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlSingle::CompareTo(System.Data.SqlTypes.SqlSingle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlSingle_CompareTo_m167AE18CF6ACCFA18A71BA742D642ECC7463D22A (SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767* __this, SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataTable::Compare(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTable_Compare_mD425943926EF05816C7B8F5BB02F4234C0AB72C5 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, String_t* ___s10, String_t* ___s21, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlGuid::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlGuid_CompareTo_m55E6808098A106DD6A3C9C056DD74C2BBAC9B990 (SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlBoolean System.Data.Common.SqlConvert::ConvertToSqlBoolean(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 SqlConvert_ConvertToSqlBoolean_m45F037118335EE0E9145C6EE0AD1BD3432C187CD (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlBoolean::CompareTo(System.Data.SqlTypes.SqlBoolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlBoolean_CompareTo_mAB4868F894724D6FFEA7678910365C1797973FB5 (SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7* __this, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlBinary System.Data.Common.SqlConvert::ConvertToSqlBinary(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347 SqlConvert_ConvertToSqlBinary_m347444E186CF2ACCB7452ECC8FD4D950F5CE397B (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlBinary::CompareTo(System.Data.SqlTypes.SqlBinary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlBinary_CompareTo_m15A26CE886F9544972BBA5DA713A2E321C12335A (SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347* __this, SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347 ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDateTime System.Data.Common.SqlConvert::ConvertToSqlDateTime(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlDateTime::CompareTo(System.Data.SqlTypes.SqlDateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlDateTime_CompareTo_mFC30CA07C33E98986C7B6B91D2C7F02F644F28A3 (SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2* __this, SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlMoney System.Data.Common.SqlConvert::ConvertToSqlMoney(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Data.SqlTypes.SqlMoney::CompareTo(System.Data.SqlTypes.SqlMoney)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SqlMoney_CompareTo_m8CD6963D21781A101DF52892EEC1C5F2D6F0A708 (SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB* __this, SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___value0, const RuntimeMethod* method) ;
// System.Void System.Data.BinaryNode::SetTypeMismatchError(System.Int32,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___op0, Type_t* ___left1, Type_t* ___right2, const RuntimeMethod* method) ;
// System.Object System.Data.BinaryNode::Eval(System.Data.ExpressionNode,System.Data.DataRow,System.Data.DataRowVersion,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002 (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___expr0, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row1, int32_t ___version2, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___recordNos3, const RuntimeMethod* method) ;
// System.Data.Common.StorageType System.Data.Common.DataStorage::GetStorageType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataStorage_GetStorageType_mDD0D0A90F39994863F9A9E0551C47076D10A5E33 (Type_t* ___dataType0, const RuntimeMethod* method) ;
// System.Boolean System.Data.Common.DataStorage::IsObjectSqlNull(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Data.Common.StorageType System.Data.BinaryNode::ResultSqlType(System.Data.Common.StorageType,System.Data.Common.StorageType,System.Boolean,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_ResultSqlType_m50B087B54D7AD34C3771B7F9994A9AA825AF9EC6 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, bool ___lc2, bool ___rc3, int32_t ___op4, const RuntimeMethod* method) ;
// System.Data.Common.StorageType System.Data.BinaryNode::ResultType(System.Data.Common.StorageType,System.Data.Common.StorageType,System.Boolean,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_ResultType_m4416FF1A35FF5D93EA117D614D280D808AED1FDF (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, bool ___lc2, bool ___rc3, int32_t ___op4, const RuntimeMethod* method) ;
// System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Addition(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Addition_m79AD1C3ED1E6345D50110EA4D20DAE724724B9DA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t1, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::op_Addition(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt16 System.Data.Common.SqlConvert::ConvertToSqlInt16(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::op_Addition(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B SqlInt16_op_Addition_m566F20783571310554E80E1BEEA543A61E102240 (SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___x0, SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::op_Addition(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 SqlInt32_op_Addition_m84EE359A27ED3C0653AE88AF625B954E64795B41 (SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___x0, SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::op_Addition(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 SqlInt64_op_Addition_mA1FDDD4C87FE996DF4E8A5D9AFDCB12BE59146E7 (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___x0, SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::op_Addition(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 SqlDouble_op_Addition_m72B88477AC1F86C843B6CB2BFC0B226B3152F296 (SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___x0, SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::op_Addition(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 SqlSingle_op_Addition_mF1F4B661B0470D920707E46833DB6060E0E52346 (SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___x0, SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::op_Addition(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 SqlDecimal_op_Addition_m9DB6E446ECAB9E09DFD5A646F2651F331AE32E8F (SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___x0, SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::op_Addition(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB SqlMoney_op_Addition_mFC3355E03455B65E6C2FE455AE9B82D70A1A37A7 (SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___x0, SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlByte System.Data.Common.SqlConvert::ConvertToSqlByte(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::op_Addition(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 SqlByte_op_Addition_m252AABE9936CB7E2FE48B824908CB74946FB347B (SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___x0, SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlString System.Data.Common.SqlConvert::ConvertToSqlString(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D SqlConvert_ConvertToSqlString_m857DD423CD1F6B9A1B7CABADF85438C8977D3768 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlString System.Data.SqlTypes.SqlString::op_Addition(System.Data.SqlTypes.SqlString,System.Data.SqlTypes.SqlString)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D SqlString_op_Addition_m365257BA3FDD9D9037BBB086C824B2A69DDD6CB2 (SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D ___x0, SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D ___y1, const RuntimeMethod* method) ;
// System.DateTime System.Data.SqlTypes.SqlDateTime::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D SqlDateTime_get_Value_mDF93B79BDCDEBC53B67611B9426399F69BDFDDE5 (SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2* __this, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::op_Subtraction(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 SqlByte_op_Subtraction_mFF3FBB4D70A527F55F1438DE4AA0CDB4CE38DB8C (SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___x0, SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::op_Subtraction(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B SqlInt16_op_Subtraction_m4BC2415479DE41F90466A35DFA129F66B90CFEE6 (SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___x0, SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::op_Subtraction(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 SqlInt32_op_Subtraction_m82E30824C1A46C12C3C2032BF750A08E0E3B7710 (SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___x0, SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::op_Subtraction(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 SqlInt64_op_Subtraction_m3E20CA6176DF7F347D86215CB2F776777BB9A3C4 (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___x0, SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___y1, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Subtraction(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Subtraction_m50F5DC718BD003A09A5BC62BAA3DECD0745AD3F1 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::op_Subtraction(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 SqlDecimal_op_Subtraction_m1E3A30CB45F7D55DBF8B52DED3CE8D938EC2A686 (SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___x0, SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::op_Subtraction(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 SqlSingle_op_Subtraction_m7FFE1C6B1A407A086E8DA9A53DE91D32D10BFFE3 (SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___x0, SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::op_Subtraction(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 SqlDouble_op_Subtraction_mF302CE65AE3F34EFC999B0AFC20F856FB1B748D7 (SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___x0, SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::op_Subtraction(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB SqlMoney_op_Subtraction_mB5F1F6EB92EEF53465C8E3CFDBB9B5BD7C998209 (SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___x0, SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___y1, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t1, const RuntimeMethod* method) ;
// System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::op_Subtraction(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::op_Multiply(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 SqlByte_op_Multiply_mBD9FC501CF68C81E459550CEAE6CE16EAACEEA1A (SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___x0, SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::op_Multiply(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B SqlInt16_op_Multiply_m674073FDB85C8B3FC526B0D78FF7215504CAA017 (SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___x0, SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::op_Multiply(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 SqlInt32_op_Multiply_mCCB00A7AE491D5575A02EF0EEFF11AE5C45B9094 (SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___x0, SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::op_Multiply(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 SqlInt64_op_Multiply_m8ACC9BC36C37BEC5415E943E89BEFE1149652939 (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___x0, SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___y1, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Multiply(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Multiply_mFD6D7FB94F0CDF935CEE8527EA9FD3EAB159EF19 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::op_Multiply(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 SqlDecimal_op_Multiply_m8BDCAC9E3CDB405D152C72BACCBECD46DF8C1AAC (SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___x0, SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::op_Multiply(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 SqlSingle_op_Multiply_mA068B08E26955349A1CD9C38245F821497EB1AE7 (SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___x0, SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::op_Multiply(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB SqlMoney_op_Multiply_mA20C2F3C2405C00DA3363059826361C6F26AB7FE (SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___x0, SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::op_Multiply(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 SqlDouble_op_Multiply_m69986FF82179F26ED935C058CC714D5B2B490AE0 (SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___x0, SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::op_Division(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 SqlByte_op_Division_m792F09E1D3AC4B822BF967D5C5326E1AF01B9C3E (SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___x0, SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::op_Division(System.Data.SqlTypes.SqlInt16,System.Data.SqlTypes.SqlInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B SqlInt16_op_Division_m7E7B3EC464A6F69735847E2D7984E505EC61D708 (SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___x0, SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::op_Division(System.Data.SqlTypes.SqlInt32,System.Data.SqlTypes.SqlInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 SqlInt32_op_Division_mE4F12E6A97170C49B4E39104F178B7225C73F99C (SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___x0, SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::op_Division(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 SqlInt64_op_Division_m8AA85EF43A99EC1366C534ABE0923728428DA9AB (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___x0, SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___y1, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Division(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Division_mC679B917681D7B7D7791E0017A6A51AA76C1C72A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::op_Division(System.Data.SqlTypes.SqlDecimal,System.Data.SqlTypes.SqlDecimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 SqlDecimal_op_Division_m77953E11503A2F5632149F528CDA129C71A15BF5 (SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___x0, SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::op_Division(System.Data.SqlTypes.SqlSingle,System.Data.SqlTypes.SqlSingle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 SqlSingle_op_Division_mC69BC83D4283BD7833BD108DC6F2FEEA746FCE1E (SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___x0, SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::op_Division(System.Data.SqlTypes.SqlMoney,System.Data.SqlTypes.SqlMoney)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB SqlMoney_op_Division_mF918781C11C28F111186D981F54258CCA6E79163 (SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___x0, SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::op_Division(System.Data.SqlTypes.SqlDouble,System.Data.SqlTypes.SqlDouble)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 SqlDouble_op_Division_m51E5D52F6CB9CCA2CB08B7BA32D1A50FE54DE30F (SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___x0, SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 ___y1, const RuntimeMethod* method) ;
// System.Int32 System.Data.BinaryNode::BinaryCompare(System.Object,System.Object,System.Data.Common.StorageType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, RuntimeObject* ___vLeft0, RuntimeObject* ___vRight1, int32_t ___resultType2, int32_t ___op3, const RuntimeMethod* method) ;
// System.Boolean System.Data.SqlTypes.SqlBoolean::get_IsFalse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SqlBoolean_get_IsFalse_m646CE988D5B3AD60DC1496527F008088B74C44E2 (SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.SqlTypes.SqlBoolean::get_IsTrue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SqlBoolean_get_IsTrue_mD2491FECA6D8BEC7F00C0071C6299187B28B52D4 (SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsIntegerSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsIntegerSql_m0EE6794F4908616B07067568323FB3B00AC0E5F7 (int32_t ___type0, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::op_Modulus(System.Data.SqlTypes.SqlInt64,System.Data.SqlTypes.SqlInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 SqlInt64_op_Modulus_mE336884EE7AD2EA0C2045D5091D040BA50FA95A1 (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___x0, SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 ___y1, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt64::ToSqlInt32()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 SqlInt64_ToSqlInt32_m6B96CA26421E6C524936B54B5FDFBFD82552FDD9 (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272* __this, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt64::ToSqlInt16()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B SqlInt64_ToSqlInt16_m0EFCFBEB8CC9A1EA6EC4DE6C0A6533F381900E5D (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272* __this, const RuntimeMethod* method) ;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlInt64::ToSqlByte()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 SqlInt64_ToSqlByte_m2D4E319395763521491F1558976FE7B2697552EC (SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272* __this, const RuntimeMethod* method) ;
// System.Type System.Data.Common.DataStorage::GetTypeStorage(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* DataStorage_GetTypeStorage_m5A306926BA627DDCB35E52FC45C4BEE832B95C94 (int32_t ___storageType0, const RuntimeMethod* method) ;
// System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4 (RuntimeObject* ___value0, Type_t* ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::InWithoutParentheses()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_InWithoutParentheses_m6F0C42FC24BDCD1C519E67C24C985867E42488D8 (const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::UnsupportedOperator(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_UnsupportedOperator_mDDE1F2196F2A6017BDF518D9C6B6732E5907F61C (int32_t ___op0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::Overflow(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_Overflow_mAB67268A020C9ED649CA22A38A176A13600FFE66 (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsSigned(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsSigned_m1B1A282CD60788B91EE3599C186D01D4D9CDDEA4 (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsUnsigned(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsUnsigned_m0BA16D62CCA17994F4CFEA9414649C87B702E087 (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsSignedSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsSignedSql_m089041F1A529C92B8B4085DCD5D2DA69960A538E (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsUnsignedSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsUnsignedSql_mCE00B1EEFB206A53E6A0347520823CF2F31AB83E (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.Operators::IsRelational(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Operators_IsRelational_m7116295DD1C027F2A0C9A0D2CC5479F95FEA34CC (int32_t ___op0, const RuntimeMethod* method) ;
// System.Data.BinaryNode/DataTypePrecedence System.Data.BinaryNode::GetPrecedence(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_GetPrecedence_m65BBA749EA82CAB7C8516A24C5D1AE4BD2816CDF (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___storageType0, const RuntimeMethod* method) ;
// System.Boolean System.Data.Operators::IsLogical(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Operators_IsLogical_mC7EA14EDD06955E2ABD850F45F899DE2DFFD710A (int32_t ___op0, const RuntimeMethod* method) ;
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.Data.Common.StorageType System.Data.BinaryNode::GetPrecedenceType(System.Data.BinaryNode/DataTypePrecedence)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_GetPrecedenceType_mF0E281ED98DE6DE48F5CA72474907E4B23A3C0EF (int32_t ___code0, const RuntimeMethod* method) ;
// System.Boolean System.Data.Operators::IsArithmetical(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Operators_IsArithmetical_m71C6168B1905D259A01720658B36D82588A919F9 (int32_t ___op0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsNumeric(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsNumeric_m0AF895B1516C02207B519E56D8A3B3505DAD4509 (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsInteger(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsInteger_m90642E7E2762B628C16A1491F906A829726939CD (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.BinaryNode::IsMixed(System.Data.Common.StorageType,System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_IsMixed_m8B553DF8B2442443F8C2D7651BF973B51C3F5A08 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::AmbiguousBinop(System.Int32,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_AmbiguousBinop_mBC5E5273397B7D6542B1FFCDE4F34EB70B267624 (int32_t ___op0, Type_t* ___type11, Type_t* ___type22, const RuntimeMethod* method) ;
// System.Int32 System.Data.BinaryNode::SqlResultType(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_SqlResultType_m84124C95CED89134F3BE8D02DC9DD8DDC79C45E6 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___typeCode0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsNumericSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsNumericSql_m4680B485888010B3286D385239051FE292099A52 (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.BinaryNode::IsMixedSql(System.Data.Common.StorageType,System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_IsMixedSql_m5BD92C7FD873A6BCF34D310C0DEAC20283D796D5 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, const RuntimeMethod* method) ;
// System.Void System.Data.BinaryNode::.ctor(System.Data.DataTable,System.Int32,System.Data.ExpressionNode,System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryNode__ctor_m7514FA08A8C7CD203362FCAB2FE53C855B9BDFC7 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___op1, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___left2, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___right3, const RuntimeMethod* method) ;
// System.Object System.Data.Common.SqlConvert::ChangeType2(System.Object,System.Data.Common.StorageType,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SqlConvert_ChangeType2_m5D7A9B02FD7B211AC60BDF6A4973CFCE367C400F (RuntimeObject* ___value0, int32_t ___stype1, Type_t* ___type2, RuntimeObject* ___formatProvider3, const RuntimeMethod* method) ;
// System.String System.Data.LikeNode::AnalyzePattern(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587 (LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001* __this, String_t* ___pat0, const RuntimeMethod* method) ;
// System.String System.Data.SqlTypes.SqlString::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SqlString_get_Value_m542A333CCBBF1866B0F9B9F01B442BC38272912A (SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D* __this, const RuntimeMethod* method) ;
// System.String System.String::TrimEnd(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_TrimEnd_mD7CFB0999EEEE20E3A869516EBCE07E8AB5BD529 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimChars0, const RuntimeMethod* method) ;
// System.Int32 System.Data.DataTable::IndexOf(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTable_IndexOf_m53D9D42A5C662DA9F6F13F50FC798EB97F4E13D3 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, String_t* ___s10, String_t* ___s21, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataTable::IsSuffix(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTable_IsSuffix_mFB5BAA6A8A78FECFC3FD8179491F0720F26A2F77 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, String_t* ___s10, String_t* ___s21, const RuntimeMethod* method) ;
// System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::InvalidPattern(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_InvalidPattern_mDCD05AE13093A0206D3EEB1FE19830B3DD0B09E3 (String_t* ___pat0, const RuntimeMethod* method) ;
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ;
// System.Object System.Data.ConstNode::SmallestNumeric(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstNode_SmallestNumeric_m1E2FA79FE8AC96258D5BDB916A4984CF96E96899 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, RuntimeObject* ___constant0, const RuntimeMethod* method) ;
// System.Object System.Data.ConstNode::SmallestDecimal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstNode_SmallestDecimal_mB8927B5A2FAB9F62B5E111BC2B8E1AA24A4D5B99 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, RuntimeObject* ___constant0, const RuntimeMethod* method) ;
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_InvariantInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621 (const RuntimeMethod* method) ;
// System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mB0FE0EF8913B62A513A8604E24D832B4F5CC9379 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.String System.String::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166 (String_t* __this, String_t* ___oldValue0, String_t* ___newValue1, const RuntimeMethod* method) ;
// System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Parse_mFC060EFBF6C9D9FF7E17E23800E3CB14D04B322A (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Decimal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_TryParse_m677E01C2DD4D001D8C73270EE906646DB7615A4B (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* ___result3, const RuntimeMethod* method) ;
// System.Boolean System.Double::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Double&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m6038C4DBF1789F1954938FF7F6D3459359CD7718 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, double* ___result3, const RuntimeMethod* method) ;
// System.Boolean System.Int32::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m3CB3A8252B2254BF929D207AFA9F2CD4DA3E3F79 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, int32_t* ___result3, const RuntimeMethod* method) ;
// System.Boolean System.Int64::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int64&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m280F0E3C898A7C3A57F35E3B136D4BFACE12122A (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, int64_t* ___result3, const RuntimeMethod* method) ;
// System.Void System.Data.DataExpression::.ctor(System.Data.DataTable,System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataExpression__ctor_mBCA81ACC369CF3945922CE1A14140CC534146F9F (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, String_t* ___expression1, Type_t* ___type2, const RuntimeMethod* method) ;
// T[] System.Array::Empty<System.Data.DataColumn>()
inline DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* Array_Empty_TisDataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_m2A49703C31898C24DBB845E50785807B9624E634_inline (const RuntimeMethod* method)
{
return (( DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline)(method);
}
// System.Void System.Data.ExpressionParser::.ctor(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser__ctor_m09792BDB75E8C301D63006FF1F47C6A9871ABD14 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::LoadExpression(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_LoadExpression_m7302687C5B2BFDF3DF0424AD073DB8763200AFA1 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, String_t* ___data0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::UnsupportedDataType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_UnsupportedDataType_m1CF9965635DE8E35EF2E6C16340D43674AC239CD (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Data.ExpressionNode System.Data.ExpressionParser::Parse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Void System.Data.DataExpression::Bind(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataExpression_Bind_mE90EAA6D99A966D2F519F9C024ACD5E83712089C (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Data.DataColumn>::.ctor()
inline void List_1__ctor_mE8A6104EE32A7CF4C3168A3F7C4FD1AEE2295817 (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// T[] System.Collections.Generic.List`1<System.Data.DataColumn>::ToArray()
inline DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* List_1_ToArray_m8A502D95BB2662F46C3F92088517C1E00690FEEF (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* __this, const RuntimeMethod* method)
{
return (( DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* (*) (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785*, const RuntimeMethod*))List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared)(__this, method);
}
// System.Object System.Data.DataExpression::Evaluate(System.Data.DataRow,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataExpression_Evaluate_m1B155E77721AF6F4DA817D4D810E06EBB5E84BE5 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, int32_t ___version1, const RuntimeMethod* method) ;
// System.IFormatProvider System.Data.DataTable::get_FormatProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataTable_get_FormatProvider_mDDD3E283FBF8EDEF604FA53499636745136CF414 (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExceptionBuilder::TraceExceptionForCapture(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExceptionBuilder_TraceExceptionForCapture_m7FC4C600BFD10849F5DCCB85AF16270ED9B558E2 (Exception_t* ___e0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::DatavalueConvertion(System.Object,System.Type,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_DatavalueConvertion_m4048720B72239737E057BF0F3CEA7C48509235F1 (RuntimeObject* ___value0, Type_t* ___type1, Exception_t* ___innerException2, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::InvokeArgument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_InvokeArgument_mDDC164AB7417A8A8CF9CF3F73BE4531C17405DF3 (const RuntimeMethod* method) ;
// System.String System.Data.DataExpression::get_Expression()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataExpression_get_Expression_m0633510D87CB56DE2CF81D2CC40E4F638BC417F0 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::FilterConvertion(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_FilterConvertion_m7CEB8EFEAEAC7E79B4397354EF0D155650BA739A (String_t* ___expr0, const RuntimeMethod* method) ;
// System.Boolean System.Data.Common.DataStorage::IsObjectNull(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataStorage_IsObjectNull_m788B8019D245253AAB19B91CE6604B79113921C4 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Data.DataExpression::IsUnknown(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_IsUnknown_m56F6E33CD45087D1873954F5B7E6FC267D1EA6BB (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Boolean::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38 (String_t* ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsFloat(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsFloat_mA9D3A222DC25CEDDC92F034CF51CA5FB0DA0878F (int32_t ___type0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionNode::IsFloatSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsFloatSql_mDB14C4D6ECEE99DBF9405A4009D9FF15BA3D984F (int32_t ___type0, const RuntimeMethod* method) ;
// System.Void System.Data.OperatorInfo::.ctor(System.Data.Nodes,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* __this, int32_t ___type0, int32_t ___op1, int32_t ___pri2, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::StartScan()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_StartScan_m85D88C4E98030219D22DEDA90D6AE5928FDE7EF1 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Data.Tokens System.Data.ExpressionParser::Scan()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::MissingOperand(System.Data.OperatorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_MissingOperand_mC05F5E9D919124306622901BE24397C6DCCCA987 (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* ___before0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::BuildExpression(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___pri0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::MissingRightParen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_MissingRightParen_m692DDC407B9825B73F2571177A4EDD1BE3DFC4BE (const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::MissingOperator(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_MissingOperator_m03917403253651CB09B232B4B10CF24E02826200 (String_t* ___token0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanToken(System.Data.Tokens)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___token0, const RuntimeMethod* method) ;
// System.String System.Data.NameNode::ParseName(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NameNode_ParseName_mEA8CDCCAA6228690021EDE8AC38BF853C04580E4 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___text0, int32_t ___start1, int32_t ___pos2, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::CheckToken(System.Data.Tokens)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___token0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::LookupArgument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_LookupArgument_m6CA130A41EFEC533118EADC991F6F6D0CAA3CB3C (const RuntimeMethod* method) ;
// System.Void System.Data.LookupNode::.ctor(System.Data.DataTable,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LookupNode__ctor_m77FE593F461106CDFC13CBAF84B98C9797BA2462 (LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, String_t* ___columnName1, String_t* ___relationName2, const RuntimeMethod* method) ;
// System.Void System.Data.NameNode::.ctor(System.Data.DataTable,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameNode__ctor_m04929B7D83559A1EF9DF55BDD42E6D674D0426DD (NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___text1, int32_t ___start2, int32_t ___pos3, const RuntimeMethod* method) ;
// System.Void System.Data.ConstNode::.ctor(System.Data.DataTable,System.Data.ValueType,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstNode__ctor_m7C6B1B19AD635A224B7EC3ED00C4EF906E1E3A10 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___type1, RuntimeObject* ___constant2, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::NodePush(System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___node0, const RuntimeMethod* method) ;
// System.Void System.Data.FunctionNode::.ctor(System.Data.DataTable,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FunctionNode__ctor_mCFF765D875CD16A27717F43CBA1E646FC3E34436 (FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, String_t* ___name1, const RuntimeMethod* method) ;
// System.Data.ExpressionNode System.Data.ExpressionParser::NodePeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_NodePeek_mCE1ADD5E5CC8BA52B5B23D495EECEE4B86C00DEA (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::SyntaxError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_SyntaxError_mFEFEB995F7EEE7DCAFE09C97120AB110D75429B4 (const RuntimeMethod* method) ;
// System.Data.ExpressionNode System.Data.ExpressionParser::NodePop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Data.FunctionId System.Data.FunctionNode::get_Aggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FunctionNode_get_Aggregate_m849B9719858B1D6FF7B6849C7E59F37CBE4F1F85 (FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* __this, const RuntimeMethod* method) ;
// System.Data.ExpressionNode System.Data.ExpressionParser::ParseAggregateArgument(System.Data.FunctionId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_ParseAggregateArgument_m06ABF8D32700EA9192953A4F5A23B262F0758898 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___aggregate0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::TooManyRightParentheses()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_TooManyRightParentheses_m1E04E101B0A37189B7C52FE7623EF10FD15DA069 (const RuntimeMethod* method) ;
// System.Void System.Data.FunctionNode::AddArgument(System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FunctionNode_AddArgument_m5A095A40156F41331C8FDCFAFAE2E7C4D4B58D8B (FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* __this, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___argument0, const RuntimeMethod* method) ;
// System.Void System.Data.FunctionNode::Check()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FunctionNode_Check_mE261E8EC6C145F4411DCF7DEB63469D1BA29838D (FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* __this, const RuntimeMethod* method) ;
// System.Void System.Data.UnaryNode::.ctor(System.Data.DataTable,System.Int32,System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnaryNode__ctor_m77C651F96250E6A7FE2002232502399E8659D75D (UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___op1, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___right2, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::MissingOperandBefore(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_MissingOperandBefore_m5E5297371F84D6EF9D6B4C26F5855BCF4E2E9C29 (String_t* ___op0, const RuntimeMethod* method) ;
// System.String System.Data.Operators::ToString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Operators_ToString_mD7A0CD214F8C00FE2820A7548172590C8CFFB678 (int32_t ___op0, const RuntimeMethod* method) ;
// System.Int32 System.Data.Operators::Priority(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Operators_Priority_m55C4927F0C0862969909D9DFA2BE6444958E577D (int32_t ___op0, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.Void System.Data.NameNode::.ctor(System.Data.DataTable,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NameNode__ctor_mE9D8C907BB315B070EE71CD853FD171ACBCAAAEB (NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, String_t* ___name1, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::UnknownToken(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_UnknownToken_mF4B8012A9BEF5FEEEC9E15F6553D5B7DF384DB38 (String_t* ___token0, int32_t ___position1, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::AggregateArgument()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_AggregateArgument_m0F897E68E7B6A37DF48314651ACB5821DF5C4E9B (const RuntimeMethod* method) ;
// System.Void System.Data.AggregateNode::.ctor(System.Data.DataTable,System.Data.FunctionId,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateNode__ctor_m3BF534146DE8C7EA20963F22EEDCFFB4E538A728 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___aggregateType1, String_t* ___columnName2, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::ExpressionTooComplex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_ExpressionTooComplex_mAB9B191AFCF0D02EF725740724D22404E8F7F40D (const RuntimeMethod* method) ;
// System.Void System.Data.LikeNode::.ctor(System.Data.DataTable,System.Int32,System.Data.ExpressionNode,System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LikeNode__ctor_m561044C413AA34C6A24589CE3E120AB65344E05A (LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___op1, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___left2, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___right3, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::UnknownToken(System.Data.Tokens,System.Data.Tokens,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_UnknownToken_m7094C63D6C12F5FCE5E0D5EE6C5366D428456D86 (int32_t ___tokExpected0, int32_t ___tokCurr1, int32_t ___position2, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanWhite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanWhite_m16925FCBCE38342361228EA2D519121253BA7C9A (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanDate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanDate_m31C7FE966DFFE6F5C0A1DF38D578DED1FFE62D8F (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanString(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanString_m1DAB500B142D64646DD19FD71E8200F23A75FAC3 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___escape0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanName(System.Char,System.Char,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanName_mEFA0FBE1A3DFB35EA2E34D88F2E89DAC1EBE9A42 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___chEnd0, Il2CppChar ___esc1, String_t* ___charsToEscape2, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanNumeric()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanNumeric_m410E7FF2D48DCAA3FE1898AF25DC7CC5C59A4270 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanBinaryConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanBinaryConstant_m6D90E3F9C3BB379A57F1E04F99A61FB8E4A95B27 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionParser::IsDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsDigit_m49E3AA446F0C7BD1CAC72553135A49523A336B43 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanReserved()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanReserved_mD3C734C9587954ECEC7ECE6726F714D361407263 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionParser::IsAlphaNumeric(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsAlphaNumeric_m63A7CB6AA8213D5EB99B70C5519FF5209688E857 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser::ScanName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanName_mA81442BDA327D8BD59E79C12474F008BE77EE6AC (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::InvalidNameBracketing(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_InvalidNameBracketing_m2A7CC3D4E181CFB40C2B5624AFBE060DE02C5249 (String_t* ___name0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::InvalidDate(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_InvalidDate_mF35F42B44A62D383745C89CFEA6399068FE85592 (String_t* ___date0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionParser::IsAlpha(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsAlpha_m18C25C4B3E3F7B2B732CFF84E6017FFBAF66A593 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Exception System.Data.ExprException::InvalidString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* ExprException_InvalidString_m90543A4C54B1408DC6A4BA3B147F118DE58CD095 (String_t* ___str0, const RuntimeMethod* method) ;
// System.Boolean System.Data.ExpressionParser::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsWhiteSpace_m6FEEC5BE3E9B9AF0F65D465EC4E5D68D3E48948E (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method) ;
// System.Void System.Data.ExpressionParser/ReservedWords::.ctor(System.String,System.Data.Tokens,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9 (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87* __this, String_t* ___word0, int32_t ___token1, int32_t ___op2, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Data.DataTable/RowDiffIdUsageSection
IL2CPP_EXTERN_C void RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshal_pinvoke(const RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D& unmarshaled, RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_pinvoke& marshaled)
{
Exception_t* ____targetTable_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetTable' of type 'RowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetTable_0Exception, NULL);
}
IL2CPP_EXTERN_C void RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshal_pinvoke_back(const RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_pinvoke& marshaled, RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D& unmarshaled)
{
Exception_t* ____targetTable_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetTable' of type 'RowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetTable_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Data.DataTable/RowDiffIdUsageSection
IL2CPP_EXTERN_C void RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshal_pinvoke_cleanup(RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Data.DataTable/RowDiffIdUsageSection
IL2CPP_EXTERN_C void RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshal_com(const RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D& unmarshaled, RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_com& marshaled)
{
Exception_t* ____targetTable_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetTable' of type 'RowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetTable_0Exception, NULL);
}
IL2CPP_EXTERN_C void RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshal_com_back(const RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_com& marshaled, RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D& unmarshaled)
{
Exception_t* ____targetTable_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetTable' of type 'RowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetTable_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Data.DataTable/RowDiffIdUsageSection
IL2CPP_EXTERN_C void RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshal_com_cleanup(RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D_marshaled_com& marshaled)
{
}
// System.Void System.Data.DataTable/RowDiffIdUsageSection::Prepare(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RowDiffIdUsageSection_Prepare_mBDBD6713E3628B7B82DAE6120A71F22101F20C51 (RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
__this->____targetTable_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____targetTable_0), (void*)L_0);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
NullCheck(L_1);
L_1->____rowDiffId_70 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_1->____rowDiffId_70), (void*)(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)NULL);
return;
}
}
IL2CPP_EXTERN_C void RowDiffIdUsageSection_Prepare_mBDBD6713E3628B7B82DAE6120A71F22101F20C51_AdjustorThunk (RuntimeObject* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<RowDiffIdUsageSection_t157154888DA88AD7D8A00E97657B47BCFEE3AF0D*>(__this + _offset);
RowDiffIdUsageSection_Prepare_mBDBD6713E3628B7B82DAE6120A71F22101F20C51(_thisAdjusted, ___table0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Data.DataTable/DSRowDiffIdUsageSection
IL2CPP_EXTERN_C void DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshal_pinvoke(const DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A& unmarshaled, DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_pinvoke& marshaled)
{
Exception_t* ____targetDS_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetDS' of type 'DSRowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetDS_0Exception, NULL);
}
IL2CPP_EXTERN_C void DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshal_pinvoke_back(const DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_pinvoke& marshaled, DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A& unmarshaled)
{
Exception_t* ____targetDS_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetDS' of type 'DSRowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetDS_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Data.DataTable/DSRowDiffIdUsageSection
IL2CPP_EXTERN_C void DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshal_pinvoke_cleanup(DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Data.DataTable/DSRowDiffIdUsageSection
IL2CPP_EXTERN_C void DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshal_com(const DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A& unmarshaled, DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_com& marshaled)
{
Exception_t* ____targetDS_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetDS' of type 'DSRowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetDS_0Exception, NULL);
}
IL2CPP_EXTERN_C void DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshal_com_back(const DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_com& marshaled, DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A& unmarshaled)
{
Exception_t* ____targetDS_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_targetDS' of type 'DSRowDiffIdUsageSection': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____targetDS_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Data.DataTable/DSRowDiffIdUsageSection
IL2CPP_EXTERN_C void DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshal_com_cleanup(DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A_marshaled_com& marshaled)
{
}
// System.Void System.Data.DataTable/DSRowDiffIdUsageSection::Prepare(System.Data.DataSet)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DSRowDiffIdUsageSection_Prepare_m689D008112FF2DB8B420961739A18FA785ACBF42 (DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A* __this, DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ___ds0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_0 = ___ds0;
__this->____targetDS_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____targetDS_0), (void*)L_0);
V_0 = 0;
goto IL_0021;
}
IL_000b:
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_1 = ___ds0;
NullCheck(L_1);
DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* L_2;
L_2 = DataSet_get_Tables_m8F063F3CDD2BB72B97034D0CE1838EFBFA15AC61_inline(L_1, NULL);
int32_t L_3 = V_0;
NullCheck(L_2);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_4;
L_4 = DataTableCollection_get_Item_mA833EDEEAE51765547DD6502A19B17CC07253636(L_2, L_3, NULL);
NullCheck(L_4);
L_4->____rowDiffId_70 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&L_4->____rowDiffId_70), (void*)(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)NULL);
int32_t L_5 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
}
IL_0021:
{
int32_t L_6 = V_0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_7 = ___ds0;
NullCheck(L_7);
DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* L_8;
L_8 = DataSet_get_Tables_m8F063F3CDD2BB72B97034D0CE1838EFBFA15AC61_inline(L_7, NULL);
NullCheck(L_8);
int32_t L_9;
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Data.InternalDataCollectionBase::get_Count() */, L_8);
if ((((int32_t)L_6) < ((int32_t)L_9)))
{
goto IL_000b;
}
}
{
return;
}
}
IL2CPP_EXTERN_C void DSRowDiffIdUsageSection_Prepare_m689D008112FF2DB8B420961739A18FA785ACBF42_AdjustorThunk (RuntimeObject* __this, DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ___ds0, const RuntimeMethod* method)
{
DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A* _thisAdjusted;
int32_t _offset = 1;
_thisAdjusted = reinterpret_cast<DSRowDiffIdUsageSection_tAA85427FBBFA116FDA0BD0EA17A579EF777C716A*>(__this + _offset);
DSRowDiffIdUsageSection_Prepare_m689D008112FF2DB8B420961739A18FA785ACBF42(_thisAdjusted, ___ds0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Data.DataTableClearEventArgs::.ctor(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableClearEventArgs__ctor_m4E0576C88D4460787298E0CA835E2AD6DD38E10B (DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___dataTable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___dataTable0;
__this->___U3CTableU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CTableU3Ek__BackingField_1), (void*)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
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Multicast(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* currentDelegate = reinterpret_cast<DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Open(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___sender0, ___e1, method);
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Closed(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___sender0, ___e1, method);
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenStaticInvoker(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* >::Invoke(__this->___method_ptr_0, method, NULL, ___sender0, ___e1);
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_ClosedStaticInvoker(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___sender0, ___e1);
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenVirtual(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
VirtualActionInvoker1< DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* >::Invoke(il2cpp_codegen_method_get_slot(method), ___sender0, ___e1);
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenInterface(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
InterfaceActionInvoker1< DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___sender0, ___e1);
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenGenericVirtual(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
GenericVirtualActionInvoker1< DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* >::Invoke(method, ___sender0, ___e1);
}
void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenGenericInterface(DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker1< DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* >::Invoke(method, ___sender0, ___e1);
}
// System.Void System.Data.DataTableClearEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableClearEventHandler__ctor_m8D504E65182D28F3CAB510A19A1DBC6B25739744 (DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 2;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Open;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77_Multicast;
}
// System.Void System.Data.DataTableClearEventHandler::Invoke(System.Object,System.Data.DataTableClearEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableClearEventHandler_Invoke_m8904C45C9372AFF4ABFBAA497D067F5E89514C77 (DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (DataTableClearEventHandler_tE15A0F0DEDDCCACFBD4F9F19F462C1FE90746B1B* __this, RuntimeObject* ___sender0, DataTableClearEventArgs_tA4EABDD0DB37EE6362BF319FA94FF694D2FF52A8* ___e1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(__this->___method_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.Data.DataTableCollection::.ctor(System.Data.DataSet)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection__ctor_m052A4D42D8A27FBA95D499A6B8C898CE505ED3D0 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* ___dataSet0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m32404E7D73A0E4C0184D32257009CA4A624F4A01_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB06ADD637EB1A63320B03887E8BFD04866F761F);
s_Il2CppMethodInitialized = true;
}
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B2_2 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B1_2 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B3_3 = NULL;
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
NullCheck(L_0);
ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_0, NULL);
__this->____list_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____list_2), (void*)L_0);
__this->____defaultNameIndex_3 = 1;
int32_t L_1;
L_1 = Interlocked_Increment_m7AC68EC482A6AFD97BCEFABA0FD45D203F3EA2E1((&((DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997_StaticFields*)il2cpp_codegen_static_fields_for(DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997_il2cpp_TypeInfo_var))->___s_objectTypeCount_7), NULL);
__this->____objectID_8 = L_1;
il2cpp_codegen_runtime_class_init_inline(InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var);
InternalDataCollectionBase__ctor_mA52A35CF95468C3B6732B4BC2E3FF55C85E30954(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_2 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_3;
L_3 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_4 = ___dataSet0;
G_B1_0 = L_3;
G_B1_1 = _stringLiteralAB06ADD637EB1A63320B03887E8BFD04866F761F;
G_B1_2 = L_2;
if (L_4)
{
G_B2_0 = L_3;
G_B2_1 = _stringLiteralAB06ADD637EB1A63320B03887E8BFD04866F761F;
G_B2_2 = L_2;
goto IL_003e;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_0044;
}
IL_003e:
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_5 = ___dataSet0;
NullCheck(L_5);
int32_t L_6;
L_6 = DataSet_get_ObjectID_mA76DF14B493013FD5E36F57ACA571D0A8C113489_inline(L_5, NULL);
G_B3_0 = L_6;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_0044:
{
NullCheck(G_B3_3);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m32404E7D73A0E4C0184D32257009CA4A624F4A01(G_B3_3, G_B3_2, G_B3_1, G_B3_0, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m32404E7D73A0E4C0184D32257009CA4A624F4A01_RuntimeMethod_var);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_7 = ___dataSet0;
__this->____dataSet_1 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataSet_1), (void*)L_7);
return;
}
}
// System.Collections.ArrayList System.Data.DataTableCollection::get_List()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* DataTableCollection_get_List_mC5ED65173DE664A0FE30C50E9ADEFB90709602AF (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_2;
return L_0;
}
}
// System.Int32 System.Data.DataTableCollection::get_ObjectID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____objectID_8;
return L_0;
}
}
// System.Data.DataTable System.Data.DataTableCollection::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTableCollection_get_Item_mA833EDEEAE51765547DD6502A19B17CC07253636 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_0 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
try
{// begin try (depth: 1)
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_2;
int32_t L_1 = ___index0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_0 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_2, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
goto IL_001c;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0014;
}
throw e;
}
CATCH_0014:
{// begin catch(System.ArgumentOutOfRangeException)
int32_t L_3 = ___index0;
Exception_t* L_4;
L_4 = ExceptionBuilder_TableOutOfRange_mDF7D2B81FB87B9FBC45C032C41CEB03A4C894F2A(L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_get_Item_mA833EDEEAE51765547DD6502A19B17CC07253636_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_001c:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_5 = V_0;
return L_5;
}
}
// System.Data.DataTable System.Data.DataTableCollection::get_Item(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTableCollection_get_Item_m993165A16E4DEDAF77DB419495AC48EC357903CE (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___name0;
int32_t L_1;
L_1 = DataTableCollection_InternalIndexOf_m4BD1BBC79E931B4F155B465285260137CA8289A0(__this, L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0014;
}
}
{
String_t* L_3 = ___name0;
Exception_t* L_4;
L_4 = ExceptionBuilder_CaseInsensitiveNameConflict_mCD5D9D0D88717C69F532B583BA4BF708F8AAF959(L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_get_Item_m993165A16E4DEDAF77DB419495AC48EC357903CE_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_5 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)-3)))))
{
goto IL_0020;
}
}
{
String_t* L_6 = ___name0;
Exception_t* L_7;
L_7 = ExceptionBuilder_NamespaceNameConflict_m215542B0AB7A720A6C7D045828EBAD6AD9FF19BA(L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_get_Item_m993165A16E4DEDAF77DB419495AC48EC357903CE_RuntimeMethod_var)));
}
IL_0020:
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_0036;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_9 = __this->____list_2;
int32_t L_10 = V_0;
NullCheck(L_9);
RuntimeObject* L_11;
L_11 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_9, L_10);
return ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_11, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
}
IL_0036:
{
return (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)NULL;
}
}
// System.Data.DataTable System.Data.DataTableCollection::get_Item(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTableCollection_get_Item_mB57AD43C8CF93689B041D428FA0427272B7B2C3F (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, String_t* ___tableNamespace1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___tableNamespace1;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t* L_1;
L_1 = ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAEDA66DE1C9D82E25A7FC8C15BCFF5AFBB3E3D07)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_get_Item_mB57AD43C8CF93689B041D428FA0427272B7B2C3F_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___name0;
String_t* L_3 = ___tableNamespace1;
int32_t L_4;
L_4 = DataTableCollection_InternalIndexOf_mDD5C75581CC21D88E09CC24F30DE747BB97FC4CF(__this, L_2, L_3, NULL);
V_0 = L_4;
int32_t L_5 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0023;
}
}
{
String_t* L_6 = ___name0;
Exception_t* L_7;
L_7 = ExceptionBuilder_CaseInsensitiveNameConflict_mCD5D9D0D88717C69F532B583BA4BF708F8AAF959(L_6, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_get_Item_mB57AD43C8CF93689B041D428FA0427272B7B2C3F_RuntimeMethod_var)));
}
IL_0023:
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_9 = __this->____list_2;
int32_t L_10 = V_0;
NullCheck(L_9);
RuntimeObject* L_11;
L_11 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_9, L_10);
return ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_11, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
}
IL_0039:
{
return (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)NULL;
}
}
// System.Data.DataTable System.Data.DataTableCollection::GetTable(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTableCollection_GetTable_m4673DA1D3BE04A64D9DFB3B53559C2362CD10929 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_1 = NULL;
{
V_0 = 0;
goto IL_0038;
}
IL_0004:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_2;
int32_t L_1 = V_0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_1 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_2, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = V_1;
NullCheck(L_3);
String_t* L_4;
L_4 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_3, NULL);
String_t* L_5 = ___name0;
bool L_6;
L_6 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, L_5, NULL);
if (!L_6)
{
goto IL_0034;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = V_1;
NullCheck(L_7);
String_t* L_8;
L_8 = DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7(L_7, NULL);
String_t* L_9 = ___ns1;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_9, NULL);
if (!L_10)
{
goto IL_0034;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = V_1;
return L_11;
}
IL_0034:
{
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0038:
{
int32_t L_13 = V_0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_14 = __this->____list_2;
NullCheck(L_14);
int32_t L_15;
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_14);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_0004;
}
}
{
return (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)NULL;
}
}
// System.Data.DataTable System.Data.DataTableCollection::GetTableSmart(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTableCollection_GetTableSmart_m33E1238A5DF135EED82D6C738D16B40A1221B639 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_1 = NULL;
int32_t V_2 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_3 = NULL;
{
V_0 = 0;
V_1 = (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)NULL;
V_2 = 0;
goto IL_0042;
}
IL_0008:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_2;
int32_t L_1 = V_2;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_3 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_2, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = V_3;
NullCheck(L_3);
String_t* L_4;
L_4 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_3, NULL);
String_t* L_5 = ___name0;
bool L_6;
L_6 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_4, L_5, NULL);
if (!L_6)
{
goto IL_003e;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = V_3;
NullCheck(L_7);
String_t* L_8;
L_8 = DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7(L_7, NULL);
String_t* L_9 = ___ns1;
bool L_10;
L_10 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_8, L_9, NULL);
if (!L_10)
{
goto IL_0038;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = V_3;
return L_11;
}
IL_0038:
{
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_12, 1));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_13 = V_3;
V_1 = L_13;
}
IL_003e:
{
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0042:
{
int32_t L_15 = V_2;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_16 = __this->____list_2;
NullCheck(L_16);
int32_t L_17;
L_17 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_16);
if ((((int32_t)L_15) < ((int32_t)L_17)))
{
goto IL_0008;
}
}
{
int32_t L_18 = V_0;
if ((((int32_t)L_18) == ((int32_t)1)))
{
goto IL_0056;
}
}
{
return (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)NULL;
}
IL_0056:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_19 = V_1;
return L_19;
}
}
// System.Void System.Data.DataTableCollection::Add(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_Add_m70A598AB7A3177180D223A7731058F326BFBBA8A (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D3FEEE32A6412362EC594F4D333C76C71562782);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B2_2 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B1_2 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B3_3 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
G_B1_0 = L_1;
G_B1_1 = _stringLiteral4D3FEEE32A6412362EC594F4D333C76C71562782;
G_B1_2 = L_0;
if (L_2)
{
G_B2_0 = L_1;
G_B2_1 = _stringLiteral4D3FEEE32A6412362EC594F4D333C76C71562782;
G_B2_2 = L_0;
goto IL_0016;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_001c;
}
IL_0016:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = ___table0;
NullCheck(L_3);
int32_t L_4;
L_4 = DataTable_get_ObjectID_m3A05B9B04446D482AE01B532B3A04146BD431358_inline(L_3, NULL);
G_B3_0 = L_4;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_001c:
{
NullCheck(G_B3_3);
int64_t L_5;
L_5 = DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B(G_B3_3, G_B3_2, G_B3_1, G_B3_0, DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_RuntimeMethod_var);
V_0 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_007c:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_6 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int64_t L_7 = V_0;
NullCheck(L_6);
DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C(L_6, L_7, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = ___table0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_9 = (CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D*)il2cpp_codegen_object_new(CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D_il2cpp_TypeInfo_var);
NullCheck(L_9);
CollectionChangeEventArgs__ctor_m84C25CBEFBE5495FD3FDB74C9F7A749979472218(L_9, 1, L_8, NULL);
DataTableCollection_OnCollectionChanging_m133B97CEAB060F4FFAB8C873AA751BBFFF5E68DE(__this, L_9, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_10 = ___table0;
DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0(__this, L_10, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = ___table0;
DataTableCollection_ArrayAdd_mB7272B5750B4E3866886104D900E4BC2A6871D22(__this, L_11, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_12 = ___table0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_13 = __this->____dataSet_1;
NullCheck(L_13);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14;
L_14 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_13, NULL);
NullCheck(L_12);
bool L_15;
L_15 = DataTable_SetLocaleValue_m9382ACADA75CC7CF166636BF30E557649DEF3515(L_12, L_14, (bool)0, (bool)0, NULL);
if (L_15)
{
goto IL_0067_1;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_16 = ___table0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_17 = __this->____dataSet_1;
NullCheck(L_17);
bool L_18;
L_18 = DataSet_get_CaseSensitive_m1C6E7EA2660F8DBED741526A31364B6F979DD509_inline(L_17, NULL);
NullCheck(L_16);
bool L_19;
L_19 = DataTable_SetCaseSensitiveValue_mD78875204000FA3294FB3E2E9D6AE8DA2B4203F4(L_16, L_18, (bool)0, (bool)0, NULL);
if (!L_19)
{
goto IL_006d_1;
}
}
IL_0067_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_20 = ___table0;
NullCheck(L_20);
DataTable_ResetIndexes_mF8286588DBB31764E8688AEA1D6F8BD26F977186(L_20, NULL);
}
IL_006d_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_21 = ___table0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_22 = (CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D*)il2cpp_codegen_object_new(CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D_il2cpp_TypeInfo_var);
NullCheck(L_22);
CollectionChangeEventArgs__ctor_m84C25CBEFBE5495FD3FDB74C9F7A749979472218(L_22, 1, L_21, NULL);
DataTableCollection_OnCollectionChanged_mFC70859DA76F247D014C1034201BADB25B64850A(__this, L_22, NULL);
goto IL_0088;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0088:
{
return;
}
}
// System.Void System.Data.DataTableCollection::ArrayAdd(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_ArrayAdd_mB7272B5750B4E3866886104D900E4BC2A6871D22 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_2;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
NullCheck(L_0);
int32_t L_2;
L_2 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_0, L_1);
return;
}
}
// System.String System.Data.DataTableCollection::AssignName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataTableCollection_AssignName_m609DDC85D3B02B8734403C944D42135438479038 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
V_0 = (String_t*)NULL;
goto IL_0012;
}
IL_0004:
{
int32_t L_0 = __this->____defaultNameIndex_3;
__this->____defaultNameIndex_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
}
IL_0012:
{
int32_t L_1 = __this->____defaultNameIndex_3;
String_t* L_2;
L_2 = DataTableCollection_MakeName_m389F20E77B4C790421C6FC0A4F8C835B6BD2E591(__this, L_1, NULL);
String_t* L_3 = L_2;
V_0 = L_3;
bool L_4;
L_4 = DataTableCollection_Contains_m9791EBF551DB0BAD26EA4DDEA095129DEF3606DE(__this, L_3, NULL);
if (L_4)
{
goto IL_0004;
}
}
{
String_t* L_5 = V_0;
return L_5;
}
}
// System.Void System.Data.DataTableCollection::BaseAdd(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t* L_1;
L_1 = ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB4054C6E4E11B87959DDCCED1FDA757609E47F49)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0_RuntimeMethod_var)));
}
IL_000e:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
NullCheck(L_2);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_3;
L_3 = DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline(L_2, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_4 = __this->____dataSet_1;
if ((!(((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_3) == ((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_4))))
{
goto IL_0022;
}
}
{
Exception_t* L_5;
L_5 = ExceptionBuilder_TableAlreadyInTheDataSet_m9309BAE156AA536966F79D9D048F850401267B36(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0_RuntimeMethod_var)));
}
IL_0022:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_6 = ___table0;
NullCheck(L_6);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_7;
L_7 = DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline(L_6, NULL);
if (!L_7)
{
goto IL_0030;
}
}
{
Exception_t* L_8;
L_8 = ExceptionBuilder_TableAlreadyInOtherDataSet_mF1C1372939E0AD812CD769872D8035BE80C2823A(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0_RuntimeMethod_var)));
}
IL_0030:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = ___table0;
NullCheck(L_9);
String_t* L_10;
L_10 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_9, NULL);
NullCheck(L_10);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
if (L_11)
{
goto IL_004b;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_12 = ___table0;
String_t* L_13;
L_13 = DataTableCollection_AssignName_m609DDC85D3B02B8734403C944D42135438479038(__this, NULL);
NullCheck(L_12);
DataTable_set_TableName_m999802721AE1265CA3501A84D81F99C8C71B7348(L_12, L_13, NULL);
goto IL_009b;
}
IL_004b:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_14 = ___table0;
NullCheck(L_14);
String_t* L_15;
L_15 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_14, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_16 = __this->____dataSet_1;
NullCheck(L_16);
String_t* L_17;
L_17 = DataSet_get_DataSetName_m53D20A0B757B364BB8B3287A74AAA7351EA02A45_inline(L_16, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_18 = __this->____dataSet_1;
NullCheck(L_18);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_19;
L_19 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_18, NULL);
int32_t L_20;
L_20 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_15, L_17, (bool)0, L_19, NULL);
if (!L_20)
{
goto IL_0089;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_21 = ___table0;
NullCheck(L_21);
bool L_22 = L_21->____fNestedInDataset_21;
if (L_22)
{
goto IL_0089;
}
}
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_23 = __this->____dataSet_1;
NullCheck(L_23);
String_t* L_24;
L_24 = DataSet_get_DataSetName_m53D20A0B757B364BB8B3287A74AAA7351EA02A45_inline(L_23, NULL);
Exception_t* L_25;
L_25 = ExceptionBuilder_DatasetConflictingName_m5627F463FDCDDB141823F912A08297C581CE3D5A(L_24, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0_RuntimeMethod_var)));
}
IL_0089:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_26 = ___table0;
NullCheck(L_26);
String_t* L_27;
L_27 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_26, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_28 = ___table0;
NullCheck(L_28);
String_t* L_29;
L_29 = DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7(L_28, NULL);
DataTableCollection_RegisterName_m0DD52F53E87B0B6A586D7B3B0669138DC2AAF23C(__this, L_27, L_29, NULL);
}
IL_009b:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_30 = ___table0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_31 = __this->____dataSet_1;
NullCheck(L_30);
DataTable_SetDataSet_m5CCE20CF2D4CC2450BF312112022BD1A3D5CE541(L_30, L_31, NULL);
return;
}
}
// System.Void System.Data.DataTableCollection::BaseGroupSwitch(System.Data.DataTable[],System.Int32,System.Data.DataTable[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_BaseGroupSwitch_m54E39B8C575169BE1CE7FBAE9F8C8FC9C7B6BACE (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* ___oldArray0, int32_t ___oldLength1, DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* ___newArray2, int32_t ___newLength3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
V_0 = 0;
V_1 = 0;
goto IL_0049;
}
IL_0006:
{
V_2 = (bool)0;
int32_t L_0 = V_0;
V_3 = L_0;
goto IL_0024;
}
IL_000c:
{
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_1 = ___oldArray0;
int32_t L_2 = V_1;
NullCheck(L_1);
int32_t L_3 = L_2;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_5 = ___newArray2;
int32_t L_6 = V_3;
NullCheck(L_5);
int32_t L_7 = L_6;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
if ((!(((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_4) == ((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_8))))
{
goto IL_0020;
}
}
{
int32_t L_9 = V_0;
int32_t L_10 = V_3;
if ((!(((uint32_t)L_9) == ((uint32_t)L_10))))
{
goto IL_001c;
}
}
{
int32_t L_11 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_001c:
{
V_2 = (bool)1;
goto IL_0029;
}
IL_0020:
{
int32_t L_12 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0024:
{
int32_t L_13 = V_3;
int32_t L_14 = ___newLength3;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_000c;
}
}
IL_0029:
{
bool L_15 = V_2;
if (L_15)
{
goto IL_0045;
}
}
{
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_16 = ___oldArray0;
int32_t L_17 = V_1;
NullCheck(L_16);
int32_t L_18 = L_17;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
NullCheck(L_19);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_20;
L_20 = DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline(L_19, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_21 = __this->____dataSet_1;
if ((!(((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_20) == ((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_21))))
{
goto IL_0045;
}
}
{
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_22 = ___oldArray0;
int32_t L_23 = V_1;
NullCheck(L_22);
int32_t L_24 = L_23;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
DataTableCollection_BaseRemove_mB50896DDDEDFCBA4F77F8C2BC619F5C38390C7D5(__this, L_25, NULL);
}
IL_0045:
{
int32_t L_26 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_0049:
{
int32_t L_27 = V_1;
int32_t L_28 = ___oldLength1;
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_0006;
}
}
{
V_4 = 0;
goto IL_0083;
}
IL_0052:
{
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_29 = ___newArray2;
int32_t L_30 = V_4;
NullCheck(L_29);
int32_t L_31 = L_30;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
NullCheck(L_32);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_33;
L_33 = DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline(L_32, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_34 = __this->____dataSet_1;
if ((((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_33) == ((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_34)))
{
goto IL_007d;
}
}
{
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_35 = ___newArray2;
int32_t L_36 = V_4;
NullCheck(L_35);
int32_t L_37 = L_36;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
DataTableCollection_BaseAdd_mF61D80130697BD562FB66F3F1CD901310752B9B0(__this, L_38, NULL);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_39 = __this->____list_2;
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_40 = ___newArray2;
int32_t L_41 = V_4;
NullCheck(L_40);
int32_t L_42 = L_41;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
NullCheck(L_39);
int32_t L_44;
L_44 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(29 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_39, L_43);
}
IL_007d:
{
int32_t L_45 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_45, 1));
}
IL_0083:
{
int32_t L_46 = V_4;
int32_t L_47 = ___newLength3;
if ((((int32_t)L_46) < ((int32_t)L_47)))
{
goto IL_0052;
}
}
{
return;
}
}
// System.Void System.Data.DataTableCollection::BaseRemove(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_BaseRemove_mB50896DDDEDFCBA4F77F8C2BC619F5C38390C7D5 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
bool L_1;
L_1 = DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9(__this, L_0, (bool)1, NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
NullCheck(L_2);
String_t* L_3;
L_3 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_2, NULL);
DataTableCollection_UnregisterName_m4819101CA72E68436C905A99559C3AADB0075F10(__this, L_3, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_4 = ___table0;
NullCheck(L_4);
DataTable_SetDataSet_m5CCE20CF2D4CC2450BF312112022BD1A3D5CE541(L_4, (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)NULL, NULL);
}
IL_001d:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____list_2;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_6 = ___table0;
NullCheck(L_5);
VirtualActionInvoker1< RuntimeObject* >::Invoke(41 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_5, L_6);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_7 = __this->____dataSet_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = ___table0;
NullCheck(L_7);
DataSet_OnRemovedTable_m17B5CF7FD7BC720D8A1D4272C62A732EB5792E0A(L_7, L_8, NULL);
return;
}
}
// System.Boolean System.Data.DataTableCollection::CanRemove(System.Data.DataTable,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, bool ___fThrowException1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE5FA32168047F1999B971C07A883164385908734_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB67B89713DBBA1F8E99BD6A11AB7A77E12FD7DDA);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
bool V_1 = false;
ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6* V_2 = NULL;
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* V_3 = NULL;
ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E* V_4 = NULL;
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* V_5 = NULL;
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B2_2 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B1_2 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B3_3 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
G_B1_0 = L_1;
G_B1_1 = _stringLiteralB67B89713DBBA1F8E99BD6A11AB7A77E12FD7DDA;
G_B1_2 = L_0;
if (L_2)
{
G_B2_0 = L_1;
G_B2_1 = _stringLiteralB67B89713DBBA1F8E99BD6A11AB7A77E12FD7DDA;
G_B2_2 = L_0;
goto IL_0016;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_001c;
}
IL_0016:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = ___table0;
NullCheck(L_3);
int32_t L_4;
L_4 = DataTable_get_ObjectID_m3A05B9B04446D482AE01B532B3A04146BD431358_inline(L_3, NULL);
G_B3_0 = L_4;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_001c:
{
bool L_5 = ___fThrowException1;
NullCheck(G_B3_3);
int64_t L_6;
L_6 = DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE5FA32168047F1999B971C07A883164385908734(G_B3_3, G_B3_2, G_B3_1, G_B3_0, L_5, DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mE5FA32168047F1999B971C07A883164385908734_RuntimeMethod_var);
V_0 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_011e:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_7 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int64_t L_8 = V_0;
NullCheck(L_7);
DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C(L_7, L_8, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = ___table0;
if (L_9)
{
goto IL_003b_1;
}
}
{
bool L_10 = ___fThrowException1;
if (L_10)
{
goto IL_0030_1;
}
}
{
V_1 = (bool)0;
goto IL_012a;
}
IL_0030_1:
{
Exception_t* L_11;
L_11 = ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB4054C6E4E11B87959DDCCED1FDA757609E47F49)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9_RuntimeMethod_var)));
}
IL_003b_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_12 = ___table0;
NullCheck(L_12);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_13;
L_13 = DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline(L_12, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_14 = __this->____dataSet_1;
if ((((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_13) == ((RuntimeObject*)(DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B*)L_14)))
{
goto IL_005f_1;
}
}
{
bool L_15 = ___fThrowException1;
if (L_15)
{
goto IL_0053_1;
}
}
{
V_1 = (bool)0;
goto IL_012a;
}
IL_0053_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_16 = ___table0;
NullCheck(L_16);
String_t* L_17;
L_17 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_16, NULL);
Exception_t* L_18;
L_18 = ExceptionBuilder_TableNotInTheDataSet_mE9A9D27942B26C84B9319E8033929BE203BD62FF(L_17, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9_RuntimeMethod_var)));
}
IL_005f_1:
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_19 = __this->____dataSet_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_20 = ___table0;
NullCheck(L_19);
VirtualActionInvoker1< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* >::Invoke(19 /* System.Void System.Data.DataSet::OnRemoveTable(System.Data.DataTable) */, L_19, L_20);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_21 = ___table0;
NullCheck(L_21);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_22;
L_22 = DataTable_get_ChildRelations_mA020ACE26F7C7F02D1BA5A2BB81A6F2AD5F2EEAA(L_21, NULL);
NullCheck(L_22);
int32_t L_23;
L_23 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Data.InternalDataCollectionBase::get_Count() */, L_22);
if (L_23)
{
goto IL_0085_1;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_24 = ___table0;
NullCheck(L_24);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_25;
L_25 = DataTable_get_ParentRelations_m57FFCDEA0F8B8474FCEDA9B064A4875DE50498E9(L_24, NULL);
NullCheck(L_25);
int32_t L_26;
L_26 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Data.InternalDataCollectionBase::get_Count() */, L_25);
if (!L_26)
{
goto IL_0095_1;
}
}
IL_0085_1:
{
bool L_27 = ___fThrowException1;
if (L_27)
{
goto IL_008f_1;
}
}
{
V_1 = (bool)0;
goto IL_012a;
}
IL_008f_1:
{
Exception_t* L_28;
L_28 = ExceptionBuilder_TableInRelation_m02389F65CFDC1F3A76053590A37D0566E8406FB6(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9_RuntimeMethod_var)));
}
IL_0095_1:
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_29 = __this->____dataSet_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_30 = ___table0;
ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6* L_31 = (ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6*)il2cpp_codegen_object_new(ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6_il2cpp_TypeInfo_var);
NullCheck(L_31);
ParentForeignKeyConstraintEnumerator__ctor_mDD130D93A3B4F6E93B6A58515F2438CFEB35FE9B(L_31, L_29, L_30, NULL);
V_2 = L_31;
goto IL_00cc_1;
}
IL_00a4_1:
{
ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6* L_32 = V_2;
NullCheck(L_32);
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_33;
L_33 = ForeignKeyConstraintEnumerator_GetForeignKeyConstraint_m2165622858BB19977DFF9DF8DBBCC67DA5FB8A82(L_32, NULL);
V_3 = L_33;
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_34 = V_3;
NullCheck(L_34);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_35;
L_35 = VirtualFuncInvoker0< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* >::Invoke(8 /* System.Data.DataTable System.Data.Constraint::get_Table() */, L_34);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_36 = ___table0;
if ((!(((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_35) == ((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_36))))
{
goto IL_00bd_1;
}
}
{
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_37 = V_3;
NullCheck(L_37);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_38;
L_38 = VirtualFuncInvoker0< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* >::Invoke(25 /* System.Data.DataTable System.Data.ForeignKeyConstraint::get_RelatedTable() */, L_37);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_39 = ___table0;
if ((((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_38) == ((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_39)))
{
goto IL_00cc_1;
}
}
IL_00bd_1:
{
bool L_40 = ___fThrowException1;
if (L_40)
{
goto IL_00c4_1;
}
}
{
V_1 = (bool)0;
goto IL_012a;
}
IL_00c4_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_41 = ___table0;
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_42 = V_3;
Exception_t* L_43;
L_43 = ExceptionBuilder_TableInConstraint_m13FE0B4CD9857651FE4FDBA7ADD79828270F3835(L_41, L_42, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9_RuntimeMethod_var)));
}
IL_00cc_1:
{
ParentForeignKeyConstraintEnumerator_tEF13F4C70F7BF1FB919AD971A85A9823CE2ABDC6* L_44 = V_2;
NullCheck(L_44);
bool L_45;
L_45 = ConstraintEnumerator_GetNext_m9541A68CFEB06AFD94B46959827869945930F859(L_44, NULL);
if (L_45)
{
goto IL_00a4_1;
}
}
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_46 = __this->____dataSet_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_47 = ___table0;
ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E* L_48 = (ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E*)il2cpp_codegen_object_new(ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E_il2cpp_TypeInfo_var);
NullCheck(L_48);
ChildForeignKeyConstraintEnumerator__ctor_m629B61F72445F16056B42E9BEDBF13C0C8433F8A(L_48, L_46, L_47, NULL);
V_4 = L_48;
goto IL_0111_1;
}
IL_00e4_1:
{
ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E* L_49 = V_4;
NullCheck(L_49);
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_50;
L_50 = ForeignKeyConstraintEnumerator_GetForeignKeyConstraint_m2165622858BB19977DFF9DF8DBBCC67DA5FB8A82(L_49, NULL);
V_5 = L_50;
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_51 = V_5;
NullCheck(L_51);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_52;
L_52 = VirtualFuncInvoker0< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* >::Invoke(8 /* System.Data.DataTable System.Data.Constraint::get_Table() */, L_51);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_53 = ___table0;
if ((!(((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_52) == ((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_53))))
{
goto IL_0101_1;
}
}
{
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_54 = V_5;
NullCheck(L_54);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_55;
L_55 = VirtualFuncInvoker0< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* >::Invoke(25 /* System.Data.DataTable System.Data.ForeignKeyConstraint::get_RelatedTable() */, L_54);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_56 = ___table0;
if ((((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_55) == ((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_56)))
{
goto IL_0111_1;
}
}
IL_0101_1:
{
bool L_57 = ___fThrowException1;
if (L_57)
{
goto IL_0108_1;
}
}
{
V_1 = (bool)0;
goto IL_012a;
}
IL_0108_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_58 = ___table0;
ForeignKeyConstraint_tBEE8801AF7B2F7F6C806B5347D18CEE1294A9062* L_59 = V_5;
Exception_t* L_60;
L_60 = ExceptionBuilder_TableInConstraint_m13FE0B4CD9857651FE4FDBA7ADD79828270F3835(L_58, L_59, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_60, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_CanRemove_m37CA333EFA179C023946CD587729F73D371FBFE9_RuntimeMethod_var)));
}
IL_0111_1:
{
ChildForeignKeyConstraintEnumerator_t5737E0EBD52A50D48CE8992CEA1693F38EA96D4E* L_61 = V_4;
NullCheck(L_61);
bool L_62;
L_62 = ConstraintEnumerator_GetNext_m9541A68CFEB06AFD94B46959827869945930F859(L_61, NULL);
if (L_62)
{
goto IL_00e4_1;
}
}
{
V_1 = (bool)1;
goto IL_012a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_012a:
{
bool L_63 = V_1;
return L_63;
}
}
// System.Void System.Data.DataTableCollection::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_Clear_m420DFDDC9B714C1FA3C9E15C490D94990E3ABEF9 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral601D89C0BE0EE0C44684609DE432E87C4B1380B3);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = 0;
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* V_2 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
NullCheck(L_0);
int64_t L_2;
L_2 = DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286(L_0, _stringLiteral601D89C0BE0EE0C44684609DE432E87C4B1380B3, L_1, DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286_RuntimeMethod_var);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0089:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_3 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int64_t L_4 = V_0;
NullCheck(L_3);
DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C(L_3, L_4, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____list_2;
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_5);
V_1 = L_6;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7 = __this->____list_2;
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7);
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_9 = (DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F*)(DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F*)SZArrayNew(DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F_il2cpp_TypeInfo_var, (uint32_t)L_8);
V_2 = L_9;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = __this->____list_2;
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_11 = V_2;
NullCheck(L_10);
VirtualActionInvoker2< RuntimeArray*, int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_10, (RuntimeArray*)L_11, 0);
il2cpp_codegen_runtime_class_init_inline(InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var);
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_12 = ((InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_StaticFields*)il2cpp_codegen_static_fields_for(InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var))->___s_refreshEventArgs_0;
DataTableCollection_OnCollectionChanging_m133B97CEAB060F4FFAB8C873AA751BBFFF5E68DE(__this, L_12, NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_13 = __this->____dataSet_1;
NullCheck(L_13);
bool L_14 = L_13->____fInitInProgress_17;
if (!L_14)
{
goto IL_0067_1;
}
}
{
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_15 = __this->____delayedAddRangeTables_4;
if (!L_15)
{
goto IL_0067_1;
}
}
{
__this->____delayedAddRangeTables_4 = (DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____delayedAddRangeTables_4), (void*)(DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F*)NULL);
}
IL_0067_1:
{
DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F* L_16 = V_2;
int32_t L_17 = V_1;
DataTableCollection_BaseGroupSwitch_m54E39B8C575169BE1CE7FBAE9F8C8FC9C7B6BACE(__this, L_16, L_17, (DataTableU5BU5D_tB4D0AEDE8374D42D9240002365B2F4600A13637F*)NULL, 0, NULL);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_18 = __this->____list_2;
NullCheck(L_18);
VirtualActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_18);
il2cpp_codegen_runtime_class_init_inline(InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var);
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_19 = ((InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_StaticFields*)il2cpp_codegen_static_fields_for(InternalDataCollectionBase_tDBDE593FD7AB64DA7E3C512E49C0E0B396D3DDB2_il2cpp_TypeInfo_var))->___s_refreshEventArgs_0;
DataTableCollection_OnCollectionChanged_mFC70859DA76F247D014C1034201BADB25B64850A(__this, L_19, NULL);
goto IL_0095;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0095:
{
return;
}
}
// System.Boolean System.Data.DataTableCollection::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTableCollection_Contains_m9791EBF551DB0BAD26EA4DDEA095129DEF3606DE (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
int32_t L_1;
L_1 = DataTableCollection_InternalIndexOf_m4BD1BBC79E931B4F155B465285260137CA8289A0(__this, L_0, NULL);
return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Data.DataTableCollection::Contains(System.String,System.String,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTableCollection_Contains_mF2E9755E87CB715EE8B022D677FEF68E47465139 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, String_t* ___tableNamespace1, bool ___checkProperty2, bool ___caseSensitive3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_2 = NULL;
String_t* V_3 = NULL;
String_t* G_B6_0 = NULL;
{
bool L_0 = ___caseSensitive3;
if (L_0)
{
goto IL_0012;
}
}
{
String_t* L_1 = ___name0;
int32_t L_2;
L_2 = DataTableCollection_InternalIndexOf_m4BD1BBC79E931B4F155B465285260137CA8289A0(__this, L_1, NULL);
return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0012:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____list_2;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3);
V_0 = L_4;
V_1 = 0;
goto IL_0071;
}
IL_0022:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____list_2;
int32_t L_6 = V_1;
NullCheck(L_5);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, L_6);
V_2 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_7, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
bool L_8 = ___checkProperty2;
if (L_8)
{
goto IL_003f;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = V_2;
NullCheck(L_9);
String_t* L_10 = L_9->____tableNamespace_18;
G_B6_0 = L_10;
goto IL_0045;
}
IL_003f:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = V_2;
NullCheck(L_11);
String_t* L_12;
L_12 = DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7(L_11, NULL);
G_B6_0 = L_12;
}
IL_0045:
{
V_3 = G_B6_0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_13 = V_2;
NullCheck(L_13);
String_t* L_14;
L_14 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_13, NULL);
String_t* L_15 = ___name0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_16 = __this->____dataSet_1;
NullCheck(L_16);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_17;
L_17 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_16, NULL);
int32_t L_18;
L_18 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_14, L_15, (bool)1, L_17, NULL);
if ((!(((uint32_t)L_18) == ((uint32_t)1))))
{
goto IL_006d;
}
}
{
String_t* L_19 = V_3;
String_t* L_20 = ___tableNamespace1;
bool L_21;
L_21 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_19, L_20, NULL);
if (!L_21)
{
goto IL_006d;
}
}
{
return (bool)1;
}
IL_006d:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_0071:
{
int32_t L_23 = V_1;
int32_t L_24 = V_0;
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_0022;
}
}
{
return (bool)0;
}
}
// System.Boolean System.Data.DataTableCollection::Contains(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTableCollection_Contains_m7EDF3CC7AA17E92966B0D1D9D86AC45B8699B772 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, bool ___caseSensitive1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_2 = NULL;
{
bool L_0 = ___caseSensitive1;
if (L_0)
{
goto IL_0011;
}
}
{
String_t* L_1 = ___name0;
int32_t L_2;
L_2 = DataTableCollection_InternalIndexOf_m4BD1BBC79E931B4F155B465285260137CA8289A0(__this, L_1, NULL);
return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0011:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____list_2;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3);
V_0 = L_4;
V_1 = 0;
goto IL_0055;
}
IL_0021:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____list_2;
int32_t L_6 = V_1;
NullCheck(L_5);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, L_6);
V_2 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_7, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = V_2;
NullCheck(L_8);
String_t* L_9;
L_9 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_8, NULL);
String_t* L_10 = ___name0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_11 = __this->____dataSet_1;
NullCheck(L_11);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_11, NULL);
int32_t L_13;
L_13 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_9, L_10, (bool)1, L_12, NULL);
if ((!(((uint32_t)L_13) == ((uint32_t)1))))
{
goto IL_0051;
}
}
{
return (bool)1;
}
IL_0051:
{
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0055:
{
int32_t L_15 = V_1;
int32_t L_16 = V_0;
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_0021;
}
}
{
return (bool)0;
}
}
// System.Int32 System.Data.DataTableCollection::IndexOf(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_IndexOf_mECA63502CDFFA44FE4083324A444E24778FFC15A (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_2;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
V_0 = L_1;
V_1 = 0;
goto IL_002a;
}
IL_0010:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____list_2;
int32_t L_4 = V_1;
NullCheck(L_3);
RuntimeObject* L_5;
L_5 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_3, L_4);
if ((!(((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_2) == ((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_5, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var))))))
{
goto IL_0026;
}
}
{
int32_t L_6 = V_1;
return L_6;
}
IL_0026:
{
int32_t L_7 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_002a:
{
int32_t L_8 = V_1;
int32_t L_9 = V_0;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0010;
}
}
{
return (-1);
}
}
// System.Int32 System.Data.DataTableCollection::IndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_IndexOf_m8F93D398531DF18AC1A30528E6A2B51DB4CC01D4 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___tableName0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
String_t* L_0 = ___tableName0;
int32_t L_1;
L_1 = DataTableCollection_InternalIndexOf_m4BD1BBC79E931B4F155B465285260137CA8289A0(__this, L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_000e;
}
}
{
int32_t L_3 = V_0;
return L_3;
}
IL_000e:
{
return (-1);
}
}
// System.Int32 System.Data.DataTableCollection::IndexOf(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_IndexOf_mDE2C68896FFC497CFC0B8C199AF4F4FA67B69246 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___tableName0, String_t* ___tableNamespace1, bool ___chekforNull2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
bool L_0 = ___chekforNull2;
if (!L_0)
{
goto IL_001f;
}
}
{
String_t* L_1 = ___tableName0;
if (L_1)
{
goto IL_0011;
}
}
{
Exception_t* L_2;
L_2 = ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA50EF0B703D092CFA34A1E49E7FF1D8BD7900680)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_IndexOf_mDE2C68896FFC497CFC0B8C199AF4F4FA67B69246_RuntimeMethod_var)));
}
IL_0011:
{
String_t* L_3 = ___tableNamespace1;
if (L_3)
{
goto IL_001f;
}
}
{
Exception_t* L_4;
L_4 = ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAEDA66DE1C9D82E25A7FC8C15BCFF5AFBB3E3D07)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_IndexOf_mDE2C68896FFC497CFC0B8C199AF4F4FA67B69246_RuntimeMethod_var)));
}
IL_001f:
{
String_t* L_5 = ___tableName0;
String_t* L_6 = ___tableNamespace1;
int32_t L_7;
L_7 = DataTableCollection_InternalIndexOf_mDD5C75581CC21D88E09CC24F30DE747BB97FC4CF(__this, L_5, L_6, NULL);
V_0 = L_7;
int32_t L_8 = V_0;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_9 = V_0;
return L_9;
}
IL_002e:
{
return (-1);
}
}
// System.Void System.Data.DataTableCollection::ReplaceFromInference(System.Collections.Generic.List`1<System.Data.DataTable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_ReplaceFromInference_m344E82B75E401B3F0E6A2EE3426E70B9857BA23A (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, List_1_t88A4402AE9BC4CABD28BA59887541C46E4076C81* ___tableList0, const RuntimeMethod* method)
{
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list_2;
NullCheck(L_0);
VirtualActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = __this->____list_2;
List_1_t88A4402AE9BC4CABD28BA59887541C46E4076C81* L_2 = ___tableList0;
NullCheck(L_1);
VirtualActionInvoker1< RuntimeObject* >::Invoke(30 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_1, L_2);
return;
}
}
// System.Int32 System.Data.DataTableCollection::InternalIndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_InternalIndexOf_m4BD1BBC79E931B4F155B465285260137CA8289A0 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___tableName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_4 = NULL;
int32_t V_5 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_6 = NULL;
int32_t G_B14_0 = 0;
{
V_0 = (-1);
String_t* L_0 = ___tableName0;
if (!L_0)
{
goto IL_00bc;
}
}
{
String_t* L_1 = ___tableName0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if ((((int32_t)0) >= ((int32_t)L_2)))
{
goto IL_00bc;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____list_2;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3);
V_1 = L_4;
V_2 = 0;
V_3 = 0;
goto IL_00b5;
}
IL_0029:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____list_2;
int32_t L_6 = V_3;
NullCheck(L_5);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, L_6);
V_4 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_7, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = V_4;
NullCheck(L_8);
String_t* L_9;
L_9 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_8, NULL);
String_t* L_10 = ___tableName0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_11 = __this->____dataSet_1;
NullCheck(L_11);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_11, NULL);
int32_t L_13;
L_13 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_9, L_10, (bool)0, L_12, NULL);
V_2 = L_13;
int32_t L_14 = V_2;
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_00a3;
}
}
{
int32_t L_15 = V_3;
V_5 = ((int32_t)il2cpp_codegen_add(L_15, 1));
goto IL_009c;
}
IL_0062:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_16 = __this->____list_2;
int32_t L_17 = V_5;
NullCheck(L_16);
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_16, L_17);
V_6 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_18, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_19 = V_6;
NullCheck(L_19);
String_t* L_20;
L_20 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_19, NULL);
String_t* L_21 = ___tableName0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_22 = __this->____dataSet_1;
NullCheck(L_22);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_23;
L_23 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_22, NULL);
int32_t L_24;
L_24 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_20, L_21, (bool)0, L_23, NULL);
if ((!(((uint32_t)L_24) == ((uint32_t)1))))
{
goto IL_0096;
}
}
{
return ((int32_t)-3);
}
IL_0096:
{
int32_t L_25 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_25, 1));
}
IL_009c:
{
int32_t L_26 = V_5;
int32_t L_27 = V_1;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0062;
}
}
{
int32_t L_28 = V_3;
return L_28;
}
IL_00a3:
{
int32_t L_29 = V_2;
if ((!(((uint32_t)L_29) == ((uint32_t)(-1)))))
{
goto IL_00b1;
}
}
{
int32_t L_30 = V_0;
if ((((int32_t)L_30) == ((int32_t)(-1))))
{
goto IL_00af;
}
}
{
G_B14_0 = ((int32_t)-2);
goto IL_00b0;
}
IL_00af:
{
int32_t L_31 = V_3;
G_B14_0 = L_31;
}
IL_00b0:
{
V_0 = G_B14_0;
}
IL_00b1:
{
int32_t L_32 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_32, 1));
}
IL_00b5:
{
int32_t L_33 = V_3;
int32_t L_34 = V_1;
if ((((int32_t)L_33) < ((int32_t)L_34)))
{
goto IL_0029;
}
}
IL_00bc:
{
int32_t L_35 = V_0;
return L_35;
}
}
// System.Int32 System.Data.DataTableCollection::InternalIndexOf(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataTableCollection_InternalIndexOf_mDD5C75581CC21D88E09CC24F30DE747BB97FC4CF (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___tableName0, String_t* ___tableNamespace1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_4 = NULL;
int32_t G_B11_0 = 0;
{
V_0 = (-1);
String_t* L_0 = ___tableName0;
if (!L_0)
{
goto IL_008b;
}
}
{
String_t* L_1 = ___tableName0;
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
if ((((int32_t)0) >= ((int32_t)L_2)))
{
goto IL_008b;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____list_2;
NullCheck(L_3);
int32_t L_4;
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3);
V_1 = L_4;
V_2 = 0;
V_3 = 0;
goto IL_0087;
}
IL_0023:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____list_2;
int32_t L_6 = V_3;
NullCheck(L_5);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, L_6);
V_4 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_7, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = V_4;
NullCheck(L_8);
String_t* L_9;
L_9 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_8, NULL);
String_t* L_10 = ___tableName0;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_11 = __this->____dataSet_1;
NullCheck(L_11);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_12;
L_12 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_11, NULL);
int32_t L_13;
L_13 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_9, L_10, (bool)0, L_12, NULL);
V_2 = L_13;
int32_t L_14 = V_2;
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_0066;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_15 = V_4;
NullCheck(L_15);
String_t* L_16;
L_16 = DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7(L_15, NULL);
String_t* L_17 = ___tableNamespace1;
bool L_18;
L_18 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_16, L_17, NULL);
if (!L_18)
{
goto IL_0066;
}
}
{
int32_t L_19 = V_3;
return L_19;
}
IL_0066:
{
int32_t L_20 = V_2;
if ((!(((uint32_t)L_20) == ((uint32_t)(-1)))))
{
goto IL_0083;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_21 = V_4;
NullCheck(L_21);
String_t* L_22;
L_22 = DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7(L_21, NULL);
String_t* L_23 = ___tableNamespace1;
bool L_24;
L_24 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_22, L_23, NULL);
if (!L_24)
{
goto IL_0083;
}
}
{
int32_t L_25 = V_0;
if ((((int32_t)L_25) == ((int32_t)(-1))))
{
goto IL_0081;
}
}
{
G_B11_0 = ((int32_t)-2);
goto IL_0082;
}
IL_0081:
{
int32_t L_26 = V_3;
G_B11_0 = L_26;
}
IL_0082:
{
V_0 = G_B11_0;
}
IL_0083:
{
int32_t L_27 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_27, 1));
}
IL_0087:
{
int32_t L_28 = V_3;
int32_t L_29 = V_1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0023;
}
}
IL_008b:
{
int32_t L_30 = V_0;
return L_30;
}
}
// System.String System.Data.DataTableCollection::MakeName(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataTableCollection_MakeName_m389F20E77B4C790421C6FC0A4F8C835B6BD2E591 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral53C764C67B1FE19B7A8675B1331C9F324A5F96F0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF59B8D72542CE7CA46EF3732C2A3A46BB5B8EF20);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)1) == ((int32_t)L_0)))
{
goto IL_001b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_2;
L_2 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___index0), L_1, NULL);
String_t* L_3;
L_3 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralF59B8D72542CE7CA46EF3732C2A3A46BB5B8EF20, L_2, NULL);
return L_3;
}
IL_001b:
{
return _stringLiteral53C764C67B1FE19B7A8675B1331C9F324A5F96F0;
}
}
// System.Void System.Data.DataTableCollection::OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_OnCollectionChanged_mFC70859DA76F247D014C1034201BADB25B64850A (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___ccevent0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF92877AB7E56F43730611455406925B55A392F49);
s_Il2CppMethodInitialized = true;
}
{
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_0 = __this->____onCollectionChangedDelegate_5;
if (!L_0)
{
goto IL_002a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_1 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_2;
L_2 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
NullCheck(L_1);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C(L_1, _stringLiteralF92877AB7E56F43730611455406925B55A392F49, L_2, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_RuntimeMethod_var);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_3 = __this->____onCollectionChangedDelegate_5;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_4 = ___ccevent0;
NullCheck(L_3);
CollectionChangeEventHandler_Invoke_m33B16A0A4D512CD9ED6ABC8C52D88BD5C05649C7_inline(L_3, __this, L_4, NULL);
}
IL_002a:
{
return;
}
}
// System.Void System.Data.DataTableCollection::OnCollectionChanging(System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_OnCollectionChanging_m133B97CEAB060F4FFAB8C873AA751BBFFF5E68DE (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___ccevent0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0CB80266B2D8B0984D8B0A471F6D53947F6F7768);
s_Il2CppMethodInitialized = true;
}
{
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_0 = __this->____onCollectionChangingDelegate_6;
if (!L_0)
{
goto IL_002a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_1 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_2;
L_2 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
NullCheck(L_1);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C(L_1, _stringLiteral0CB80266B2D8B0984D8B0A471F6D53947F6F7768, L_2, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_RuntimeMethod_var);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_3 = __this->____onCollectionChangingDelegate_6;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_4 = ___ccevent0;
NullCheck(L_3);
CollectionChangeEventHandler_Invoke_m33B16A0A4D512CD9ED6ABC8C52D88BD5C05649C7_inline(L_3, __this, L_4, NULL);
}
IL_002a:
{
return;
}
}
// System.Void System.Data.DataTableCollection::RegisterName(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_RegisterName_m0DD52F53E87B0B6A586D7B3B0669138DC2AAF23C (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, String_t* ___tbNamespace1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisString_t_mE6693D84E598664B7BCD1C2216B645A7338B2CC9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCF8D28565CA0B4B55016CBB10E8FD8CFC99CB382);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_3 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
String_t* L_2 = ___name0;
String_t* L_3 = ___tbNamespace1;
NullCheck(L_0);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisString_t_mE6693D84E598664B7BCD1C2216B645A7338B2CC9(L_0, _stringLiteralCF8D28565CA0B4B55016CBB10E8FD8CFC99CB382, L_1, L_2, L_3, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisString_t_mE6693D84E598664B7BCD1C2216B645A7338B2CC9_RuntimeMethod_var);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_4 = __this->____dataSet_1;
NullCheck(L_4);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5;
L_5 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_4, NULL);
V_0 = L_5;
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = __this->____list_2;
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_6);
V_1 = L_7;
V_2 = 0;
goto IL_0084;
}
IL_0033:
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = __this->____list_2;
int32_t L_9 = V_2;
NullCheck(L_8);
RuntimeObject* L_10;
L_10 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_8, L_9);
V_3 = ((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_10, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var));
String_t* L_11 = ___name0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_12 = V_3;
NullCheck(L_12);
String_t* L_13;
L_13 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_12, NULL);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14 = V_0;
int32_t L_15;
L_15 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_11, L_13, (bool)1, L_14, NULL);
if (!L_15)
{
goto IL_0080;
}
}
{
String_t* L_16 = ___tbNamespace1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_17 = V_3;
NullCheck(L_17);
String_t* L_18;
L_18 = DataTable_get_Namespace_m3429FD2DF7BBC54DEFEB29AD9826BF89B5BD03E7(L_17, NULL);
bool L_19;
L_19 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_16, L_18, NULL);
if (!L_19)
{
goto IL_0080;
}
}
{
ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_20 = __this->____list_2;
int32_t L_21 = V_2;
NullCheck(L_20);
RuntimeObject* L_22;
L_22 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_20, L_21);
NullCheck(((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_22, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var)))));
String_t* L_23;
L_23 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(((DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)CastclassClass((RuntimeObject*)L_22, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_il2cpp_TypeInfo_var)))), NULL);
Exception_t* L_24;
L_24 = ExceptionBuilder_DuplicateTableName_mF505C059180B761E658EEE17D5F0648E402883F5(L_23, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataTableCollection_RegisterName_m0DD52F53E87B0B6A586D7B3B0669138DC2AAF23C_RuntimeMethod_var)));
}
IL_0080:
{
int32_t L_25 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_25, 1));
}
IL_0084:
{
int32_t L_26 = V_2;
int32_t L_27 = V_1;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0033;
}
}
{
String_t* L_28 = ___name0;
int32_t L_29 = __this->____defaultNameIndex_3;
String_t* L_30;
L_30 = DataTableCollection_MakeName_m389F20E77B4C790421C6FC0A4F8C835B6BD2E591(__this, L_29, NULL);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_31 = V_0;
int32_t L_32;
L_32 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_28, L_30, (bool)1, L_31, NULL);
if (!L_32)
{
goto IL_00ad;
}
}
{
int32_t L_33 = __this->____defaultNameIndex_3;
__this->____defaultNameIndex_3 = ((int32_t)il2cpp_codegen_add(L_33, 1));
}
IL_00ad:
{
return;
}
}
// System.Void System.Data.DataTableCollection::Remove(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_Remove_m9F210E29D4FAEEB19A67BD0355FBE82A616AEE4B (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral67AD968D4607368F59A66919DABAC119CCF8D3C6);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B2_2 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B1_2 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B3_3 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
G_B1_0 = L_1;
G_B1_1 = _stringLiteral67AD968D4607368F59A66919DABAC119CCF8D3C6;
G_B1_2 = L_0;
if (L_2)
{
G_B2_0 = L_1;
G_B2_1 = _stringLiteral67AD968D4607368F59A66919DABAC119CCF8D3C6;
G_B2_2 = L_0;
goto IL_0016;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_001c;
}
IL_0016:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = ___table0;
NullCheck(L_3);
int32_t L_4;
L_4 = DataTable_get_ObjectID_m3A05B9B04446D482AE01B532B3A04146BD431358_inline(L_3, NULL);
G_B3_0 = L_4;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_001c:
{
NullCheck(G_B3_3);
int64_t L_5;
L_5 = DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B(G_B3_3, G_B3_2, G_B3_1, G_B3_0, DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_RuntimeMethod_var);
V_0 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0045:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_6 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int64_t L_7 = V_0;
NullCheck(L_6);
DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C(L_6, L_7, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = ___table0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_9 = (CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D*)il2cpp_codegen_object_new(CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D_il2cpp_TypeInfo_var);
NullCheck(L_9);
CollectionChangeEventArgs__ctor_m84C25CBEFBE5495FD3FDB74C9F7A749979472218(L_9, 2, L_8, NULL);
DataTableCollection_OnCollectionChanging_m133B97CEAB060F4FFAB8C873AA751BBFFF5E68DE(__this, L_9, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_10 = ___table0;
DataTableCollection_BaseRemove_mB50896DDDEDFCBA4F77F8C2BC619F5C38390C7D5(__this, L_10, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = ___table0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_12 = (CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D*)il2cpp_codegen_object_new(CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D_il2cpp_TypeInfo_var);
NullCheck(L_12);
CollectionChangeEventArgs__ctor_m84C25CBEFBE5495FD3FDB74C9F7A749979472218(L_12, 2, L_11, NULL);
DataTableCollection_OnCollectionChanged_mFC70859DA76F247D014C1034201BADB25B64850A(__this, L_12, NULL);
goto IL_0051;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0051:
{
return;
}
}
// System.Void System.Data.DataTableCollection::UnregisterName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableCollection_UnregisterName_m4819101CA72E68436C905A99559C3AADB0075F10 (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral41DDD1C3888D4429A5AD5DEEF55A9BFC3584C766);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline(__this, NULL);
String_t* L_2 = ___name0;
NullCheck(L_0);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F(L_0, _stringLiteral41DDD1C3888D4429A5AD5DEEF55A9BFC3584C766, L_1, L_2, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F_RuntimeMethod_var);
String_t* L_3 = ___name0;
int32_t L_4 = __this->____defaultNameIndex_3;
String_t* L_5;
L_5 = DataTableCollection_MakeName_m389F20E77B4C790421C6FC0A4F8C835B6BD2E591(__this, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), NULL);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_6 = __this->____dataSet_1;
NullCheck(L_6);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_7;
L_7 = DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline(L_6, NULL);
int32_t L_8;
L_8 = InternalDataCollectionBase_NamesEqual_m6F9179F8F4F212364356FDDE5D2682D42BB84D67(__this, L_3, L_5, (bool)1, L_7, NULL);
if (!L_8)
{
goto IL_0066;
}
}
IL_0039:
{
int32_t L_9 = __this->____defaultNameIndex_3;
__this->____defaultNameIndex_3 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
int32_t L_10 = __this->____defaultNameIndex_3;
if ((((int32_t)L_10) <= ((int32_t)1)))
{
goto IL_0066;
}
}
{
int32_t L_11 = __this->____defaultNameIndex_3;
String_t* L_12;
L_12 = DataTableCollection_MakeName_m389F20E77B4C790421C6FC0A4F8C835B6BD2E591(__this, ((int32_t)il2cpp_codegen_subtract(L_11, 1)), NULL);
bool L_13;
L_13 = DataTableCollection_Contains_m9791EBF551DB0BAD26EA4DDEA095129DEF3606DE(__this, L_12, NULL);
if (!L_13)
{
goto IL_0039;
}
}
IL_0066:
{
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.Data.DataTableNewRowEventArgs::.ctor(System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableNewRowEventArgs__ctor_m8D41AE02B2DC9B15B4F9B2B0C0F30DCEF5315327 (DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___dataRow0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var);
EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3(__this, NULL);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_0 = ___dataRow0;
__this->___U3CRowU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CRowU3Ek__BackingField_1), (void*)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
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Multicast(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef void (*FunctionPointerType) (DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method);
for (il2cpp_array_size_t i = 0; i < length; i++)
{
DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* currentDelegate = reinterpret_cast<DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827*>(delegatesToInvoke[i]);
((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Open(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(___sender0, ___e1, method);
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Closed(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3*, const RuntimeMethod*);
((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___sender0, ___e1, method);
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenStaticInvoker(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
InvokerActionInvoker2< RuntimeObject*, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* >::Invoke(__this->___method_ptr_0, method, NULL, ___sender0, ___e1);
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_ClosedStaticInvoker(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___sender0, ___e1);
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenVirtual(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
VirtualActionInvoker1< DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* >::Invoke(il2cpp_codegen_method_get_slot(method), ___sender0, ___e1);
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenInterface(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
InterfaceActionInvoker1< DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___sender0, ___e1);
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenGenericVirtual(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
GenericVirtualActionInvoker1< DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* >::Invoke(method, ___sender0, ___e1);
}
void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenGenericInterface(DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
GenericInterfaceActionInvoker1< DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* >::Invoke(method, ___sender0, ___e1);
}
// System.Void System.Data.DataTableNewRowEventHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableNewRowEventHandler__ctor_mF26003288C50EBFFACA0859C0AECE2D8C5A4F500 (DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 2;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Open;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Closed;
}
else
{
bool isOpen = methodCount == 1;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C_Multicast;
}
// System.Void System.Data.DataTableNewRowEventHandler::Invoke(System.Object,System.Data.DataTableNewRowEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableNewRowEventHandler_Invoke_m85278272701E3ECAAB3CFF19ACBA415507407A9C (DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (DataTableNewRowEventHandler_t874CE0332A55E1F8A8CF67458AF71CE73975D827* __this, RuntimeObject* ___sender0, DataTableNewRowEventArgs_t8D29EF7BEF61C5A41A00F28BE1508DAED3A987F3* ___e1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(__this->___method_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.Data.DataTable System.Data.DataTablePropertyDescriptor::get_Table()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTablePropertyDescriptor_get_Table_m4992608072974C915D6645F46999E6461DE4FE0A (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->___U3CTableU3Ek__BackingField_17;
return L_0;
}
}
// System.Type System.Data.DataTablePropertyDescriptor::get_ComponentType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* DataTablePropertyDescriptor_get_ComponentType_mAFE9A1317FE37C7EAA550DABAA3AF91AA6D31AA7 (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
return L_1;
}
}
// System.Boolean System.Data.DataTablePropertyDescriptor::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTablePropertyDescriptor_get_IsReadOnly_mF9F08652ABDD542E002C0BDE88B614720D43EEF5 (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Type System.Data.DataTablePropertyDescriptor::get_PropertyType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* DataTablePropertyDescriptor_get_PropertyType_m57B5ECEA110E843ED6B7467E1EAEA26062451C1A (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBindingList_t755E8B6C1DD8843D8210B833913C0B5102BFCC03_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (IBindingList_t755E8B6C1DD8843D8210B833913C0B5102BFCC03_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
return L_1;
}
}
// System.Boolean System.Data.DataTablePropertyDescriptor::CanResetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTablePropertyDescriptor_CanResetValue_m6C5BFCDB63CFD50B339B2015D287F2B0C8CD7DF4 (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, RuntimeObject* ___component0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Data.DataTablePropertyDescriptor::GetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataTablePropertyDescriptor_GetValue_mD9981BF24A5F6FA73FC45507E6C3C145F8196908 (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, RuntimeObject* ___component0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___component0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1;
L_1 = DataTablePropertyDescriptor_get_Table_m4992608072974C915D6645F46999E6461DE4FE0A_inline(__this, NULL);
NullCheck(((DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1*)CastclassSealed((RuntimeObject*)L_0, DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1_il2cpp_TypeInfo_var)));
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2;
L_2 = DataViewManagerListItemTypeDescriptor_GetDataView_mD23D06B2ADDC338423BE268DD332E35FF6443BF0(((DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1*)CastclassSealed((RuntimeObject*)L_0, DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1_il2cpp_TypeInfo_var)), L_1, NULL);
return L_2;
}
}
// System.Void System.Data.DataTablePropertyDescriptor::ResetValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTablePropertyDescriptor_ResetValue_m089B7CA1C1DE13041823A1D9B39D84D30262EB9B (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, RuntimeObject* ___component0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Data.DataTablePropertyDescriptor::SetValue(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTablePropertyDescriptor_SetValue_mEE599A6E1644BBB69DCF925DA639E8F4D910A247 (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, RuntimeObject* ___component0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Data.DataTablePropertyDescriptor::ShouldSerializeValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataTablePropertyDescriptor_ShouldSerializeValue_m93E5037CFB1C11D4028B13954723625D9D608274 (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __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.Data.DataTableTypeConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataTableTypeConverter__ctor_mF62663895EEEB9348AF055D6D4E4E1692369DBBF (DataTableTypeConverter_t506CC2F52B4C3BDCA7B60DB91D9AC2620B07BCC7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_1;
L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL);
il2cpp_codegen_runtime_class_init_inline(ReferenceConverter_tEE21E5B01337B87A67DD99890A0427DAB108CAD2_il2cpp_TypeInfo_var);
ReferenceConverter__ctor_mECD358A5C07B37EFD8659FDEF4C067A16E51171E(__this, L_1, 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.Data.DataView::.ctor(System.Data.DataTable,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView__ctor_mA59D4A8E49FFC83CFDA8A39C806F8E2D08EC180E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, bool ___locked1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m718893B6B36BADDCC09B48F8012725E6E3290D9C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m2CADC0D4395DCE0CA7F2074C76E7E992A672B716_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B50A6D14BFFB74D7673D925725DF7E8C11896DC);
s_Il2CppMethodInitialized = true;
}
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B2_2 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B1_2 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* G_B3_3 = NULL;
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->____sort_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____sort_8), (void*)L_0);
__this->____recordStates_11 = ((int32_t)22);
__this->____shouldOpen_12 = (bool)1;
__this->____allowNew_14 = (bool)1;
__this->____allowEdit_15 = (bool)1;
__this->____allowDelete_16 = (bool)1;
__this->____delayedRecordStates_23 = (-1);
il2cpp_codegen_runtime_class_init_inline(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var);
DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* L_1 = ((DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_StaticFields*)il2cpp_codegen_static_fields_for(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var))->___s_default_0;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_2 = (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*)il2cpp_codegen_object_new(Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B_il2cpp_TypeInfo_var);
NullCheck(L_2);
Dictionary_2__ctor_m2CADC0D4395DCE0CA7F2074C76E7E992A672B716(L_2, L_1, Dictionary_2__ctor_m2CADC0D4395DCE0CA7F2074C76E7E992A672B716_RuntimeMethod_var);
__this->____rowViewCache_26 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____rowViewCache_26), (void*)L_2);
DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* L_3 = ((DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_StaticFields*)il2cpp_codegen_static_fields_for(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var))->___s_default_0;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_4 = (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*)il2cpp_codegen_object_new(Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B_il2cpp_TypeInfo_var);
NullCheck(L_4);
Dictionary_2__ctor_m2CADC0D4395DCE0CA7F2074C76E7E992A672B716(L_4, L_3, Dictionary_2__ctor_m2CADC0D4395DCE0CA7F2074C76E7E992A672B716_RuntimeMethod_var);
__this->____rowViewBuffer_27 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____rowViewBuffer_27), (void*)L_4);
il2cpp_codegen_runtime_class_init_inline(DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
int32_t L_5;
L_5 = Interlocked_Increment_m7AC68EC482A6AFD97BCEFABA0FD45D203F3EA2E1((&((DataView_t882C19B1455AFCE770D60A43A690096801824A50_StaticFields*)il2cpp_codegen_static_fields_for(DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var))->___s_objectTypeCount_29), NULL);
__this->____objectID_30 = L_5;
il2cpp_codegen_runtime_class_init_inline(MarshalByValueComponent_t19E5966D1CE2F9ED341EB16C060BA573F63AEDAA_il2cpp_TypeInfo_var);
MarshalByValueComponent__ctor_mBB8FD86B5A8057E2B9EBAB10B43E4C394AE932A6(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m3352E2F2119EB46913B51B7AAE2F217C63C35F2A(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_6 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_7;
L_7 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = ___table0;
G_B1_0 = L_7;
G_B1_1 = _stringLiteral2B50A6D14BFFB74D7673D925725DF7E8C11896DC;
G_B1_2 = L_6;
if (L_8)
{
G_B2_0 = L_7;
G_B2_1 = _stringLiteral2B50A6D14BFFB74D7673D925725DF7E8C11896DC;
G_B2_2 = L_6;
goto IL_0088;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_008e;
}
IL_0088:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = ___table0;
NullCheck(L_9);
int32_t L_10;
L_10 = DataTable_get_ObjectID_m3A05B9B04446D482AE01B532B3A04146BD431358_inline(L_9, NULL);
G_B3_0 = L_10;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_008e:
{
bool L_11 = ___locked1;
NullCheck(G_B3_3);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m718893B6B36BADDCC09B48F8012725E6E3290D9C(G_B3_3, G_B3_2, G_B3_1, G_B3_0, L_11, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m718893B6B36BADDCC09B48F8012725E6E3290D9C_RuntimeMethod_var);
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_12 = (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA*)il2cpp_codegen_object_new(DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA_il2cpp_TypeInfo_var);
NullCheck(L_12);
DataViewListener__ctor_m91A57DE8E30E954812E5623CC75FAB13539009E6(L_12, __this, NULL);
__this->____dvListener_28 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dvListener_28), (void*)L_12);
bool L_13 = ___locked1;
__this->____locked_5 = L_13;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_14 = ___table0;
__this->____table_4 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_4), (void*)L_14);
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_15 = __this->____dvListener_28;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_16 = __this->____table_4;
NullCheck(L_15);
DataViewListener_RegisterMetaDataEvents_mB1DC3C5FAD67F4BE3F14DC33733029BD5466264A(L_15, L_16, NULL);
return;
}
}
// System.Void System.Data.DataView::.ctor(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView__ctor_mC14F2AA8E78DE584CBA9718B35426CA498940688 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
DataView__ctor_mA59D4A8E49FFC83CFDA8A39C806F8E2D08EC180E(__this, L_0, (bool)0, NULL);
DataView_SetIndex2_mB117AC9FA8738D3FAFD9BE959C11F9703881100D(__this, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, ((int32_t)22), (RuntimeObject*)NULL, (bool)1, NULL);
return;
}
}
// System.Boolean System.Data.DataView::get_AllowDelete()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_get_AllowDelete_mFCDC4B3CBA3FAD4D2EF81622AA449436338F30C4 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____allowDelete_16;
return L_0;
}
}
// System.Boolean System.Data.DataView::get_AllowEdit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_get_AllowEdit_m30F56486FC5FACCDC04ECEE8214A4E15D53DC0D1 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____allowEdit_15;
return L_0;
}
}
// System.Boolean System.Data.DataView::get_AllowNew()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_get_AllowNew_mDF7F437DBF84B9DFF4DBD76F6287ED5F3BD46C7F (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____allowNew_14;
return L_0;
}
}
// System.Int32 System.Data.DataView::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_m59546C83F01C0149FDC1387278C8418672CE8AD4_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_0 = __this->____rowViewCache_26;
NullCheck(L_0);
int32_t L_1;
L_1 = Dictionary_2_get_Count_m59546C83F01C0149FDC1387278C8418672CE8AD4(L_0, Dictionary_2_get_Count_m59546C83F01C0149FDC1387278C8418672CE8AD4_RuntimeMethod_var);
return L_1;
}
}
// System.Int32 System.Data.DataView::get_CountFromIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_get_CountFromIndex_m5D41A7E127042D03FCD9B7118DA259B1CB69740D (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
int32_t G_B5_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_0 = __this->____index_6;
if (L_0)
{
goto IL_000b;
}
}
{
G_B3_0 = 0;
goto IL_0016;
}
IL_000b:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_1 = __this->____index_6;
NullCheck(L_1);
int32_t L_2;
L_2 = Index_get_RecordCount_mD2C55E6DC12BC4F256C0B27D1A9FEB100C35A7FD_inline(L_1, NULL);
G_B3_0 = L_2;
}
IL_0016:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3 = __this->____addNewRow_18;
G_B4_0 = G_B3_0;
if (L_3)
{
G_B5_0 = G_B3_0;
goto IL_0021;
}
}
{
G_B6_0 = 0;
G_B6_1 = G_B4_0;
goto IL_0022;
}
IL_0021:
{
G_B6_0 = 1;
G_B6_1 = G_B5_0;
}
IL_0022:
{
return ((int32_t)il2cpp_codegen_add(G_B6_1, G_B6_0));
}
}
// System.Data.DataViewManager System.Data.DataView::get_DataViewManager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* DataView_get_DataViewManager_mB0EE3828F4BECE9F9A04B95A9E2EE9272436A2F8 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_0 = __this->____dataViewManager_3;
return L_0;
}
}
// System.Boolean System.Data.DataView::get_IsOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_get_IsOpen_m14F7E0B768826F8B6DCEC9DD35E793B48EFBC329 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____open_13;
return L_0;
}
}
// System.Boolean System.Data.DataView::System.Collections.ICollection.get_IsSynchronized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_Collections_ICollection_get_IsSynchronized_mB2E9E9FF78BEC51BB03ADFA1882947DFBBD60CF0 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Data.DataViewRowState System.Data.DataView::get_RowStateFilter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_get_RowStateFilter_m63C6B3298EA30EF2D05CEBE0D11A09AEE4918C4F (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____recordStates_11;
return L_0;
}
}
// System.String System.Data.DataView::get_Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataView_get_Sort_m4864794D5203372CB5BD5E666E7D7DBA2CCE01AE (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____sort_8;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
if (L_1)
{
goto IL_0042;
}
}
{
bool L_2 = __this->____applyDefaultSort_17;
if (!L_2)
{
goto IL_0042;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = __this->____table_4;
if (!L_3)
{
goto IL_0042;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_4 = __this->____table_4;
NullCheck(L_4);
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* L_5 = L_4->____primaryIndex_38;
NullCheck(L_5);
if (!(((RuntimeArray*)L_5)->max_length))
{
goto IL_0042;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_6 = __this->____table_4;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = __this->____table_4;
NullCheck(L_7);
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* L_8 = L_7->____primaryIndex_38;
NullCheck(L_6);
String_t* L_9;
L_9 = DataTable_FormatSortString_mB935B7535576880470341483E069B80550C2C42C(L_6, L_8, NULL);
return L_9;
}
IL_0042:
{
String_t* L_10 = __this->____sort_8;
return L_10;
}
}
// System.Void System.Data.DataView::set_Sort(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_set_Sort_mBC381FD380638576BE18CEF1FD041415A52358C2 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF271453569B2B16EEF0C91A97259AF0B2EB2C6FC);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* V_0 = NULL;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* G_B7_0 = NULL;
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
___value0 = L_1;
}
IL_000a:
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_2 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_3;
L_3 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
String_t* L_4 = ___value0;
NullCheck(L_2);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F(L_2, _stringLiteralF271453569B2B16EEF0C91A97259AF0B2EB2C6FC, L_3, L_4, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_m17F6CAB24D6746072EA96562EA1C75A3523C3F9F_RuntimeMethod_var);
bool L_5 = __this->____fInitInProgress_24;
if (!L_5)
{
goto IL_0030;
}
}
{
String_t* L_6 = ___value0;
__this->____delayedSort_22 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____delayedSort_22), (void*)L_6);
return;
}
IL_0030:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = __this->____table_4;
if (L_7)
{
goto IL_003f;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8;
L_8 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
G_B7_0 = L_8;
goto IL_004a;
}
IL_003f:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = __this->____table_4;
NullCheck(L_9);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_10;
L_10 = DataTable_get_Locale_m7EE8F498C60742FFF844B132B3CC6054FBD5FB9F_inline(L_9, NULL);
G_B7_0 = L_10;
}
IL_004a:
{
V_0 = G_B7_0;
String_t* L_11 = __this->____sort_8;
String_t* L_12 = ___value0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_13 = V_0;
int32_t L_14;
L_14 = String_Compare_mCC9D98D7951772D5A6D2B1019F4077331C90E8C7(L_11, L_12, (bool)0, L_13, NULL);
if (L_14)
{
goto IL_0063;
}
}
{
Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* L_15 = __this->____comparison_9;
if (!L_15)
{
goto IL_0084;
}
}
IL_0063:
{
String_t* L_16 = ___value0;
DataView_CheckSort_m695B7CCB68A0F7AA4A7F60C131462F80824E3A07(__this, L_16, NULL);
__this->____comparison_9 = (Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____comparison_9), (void*)(Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0*)NULL);
String_t* L_17 = ___value0;
int32_t L_18 = __this->____recordStates_11;
RuntimeObject* L_19 = __this->____rowFilter_10;
VirtualActionInvoker3< String_t*, int32_t, RuntimeObject* >::Invoke(47 /* System.Void System.Data.DataView::SetIndex(System.String,System.Data.DataViewRowState,System.Data.IFilter) */, __this, L_17, L_18, L_19);
}
IL_0084:
{
return;
}
}
// System.Comparison`1<System.Data.DataRow> System.Data.DataView::get_SortComparison()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* DataView_get_SortComparison_m4DBE1F7E1797CD5BB969AFED404D600738493860 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* L_0 = __this->____comparison_9;
return L_0;
}
}
// System.Object System.Data.DataView::System.Collections.ICollection.get_SyncRoot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataView_System_Collections_ICollection_get_SyncRoot_mF67B5986CCA26E3D28C2AB1EE58FB4DC4FB0D017 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Data.DataTable System.Data.DataView::get_Table()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataView_get_Table_mB468070B035E38441E3FFB88E0DA2381F216F04C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_4;
return L_0;
}
}
// System.Object System.Data.DataView::System.Collections.IList.get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataView_System_Collections_IList_get_Item_mCBC2BBC704A8F583940692282C4E98882308A0B3 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___recordIndex0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___recordIndex0;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_1;
L_1 = DataView_get_Item_m7B26A9946756E0C5FBC61F0F0C3757D5A70FBC41(__this, L_0, NULL);
return L_1;
}
}
// System.Void System.Data.DataView::System.Collections.IList.set_Item(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_Collections_IList_set_Item_mF83F6FF36FD58B1CDACEF44C4761A840B073CA0C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___recordIndex0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
{
Exception_t* L_0;
L_0 = ExceptionBuilder_SetIListObject_mD33CCC8FB13C87DB866B871C65EB1DB177232387(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_System_Collections_IList_set_Item_mF83F6FF36FD58B1CDACEF44C4761A840B073CA0C_RuntimeMethod_var)));
}
}
// System.Data.DataRowView System.Data.DataView::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* DataView_get_Item_m7B26A9946756E0C5FBC61F0F0C3757D5A70FBC41 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___recordIndex0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___recordIndex0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1;
L_1 = DataView_GetRow_m77FAF760765CAB3D0A6C656FCA6056BB5C2044E8(__this, L_0, NULL);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_2;
L_2 = DataView_GetRowView_m5F953E3F3239D8779BAA63EF03490229AF274D69(__this, L_1, NULL);
return L_2;
}
}
// System.Data.DataRowView System.Data.DataView::AddNew()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* DataView_AddNew_mBDF305CCD050E889ACDB7559B3FEBCC676311DAB (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22273EFCB523F9EC3A2874FB4D0756F4842EF73A);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* V_1 = NULL;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* V_2 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
NullCheck(L_0);
int64_t L_2;
L_2 = DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286(L_0, _stringLiteral22273EFCB523F9EC3A2874FB4D0756F4842EF73A, L_1, DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mBBDA74070E723C9393C4107F9F6EFB19A0A3D286_RuntimeMethod_var);
V_0 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_008f:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_3 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int64_t L_4 = V_0;
NullCheck(L_3);
DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C(L_3, L_4, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
DataView_CheckOpen_m55D2AF52D6B8F58B5E9AE5A1218E6B72DD91FDCC(__this, NULL);
bool L_5;
L_5 = DataView_get_AllowNew_mDF7F437DBF84B9DFF4DBD76F6287ED5F3BD46C7F_inline(__this, NULL);
if (L_5)
{
goto IL_002a_1;
}
}
{
Exception_t* L_6;
L_6 = ExceptionBuilder_AddNewNotAllowNull_m9C79C9F63210857681781BE55878CCF802E942F9(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_AddNew_mBDF305CCD050E889ACDB7559B3FEBCC676311DAB_RuntimeMethod_var)));
}
IL_002a_1:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_7 = __this->____addNewRow_18;
if (!L_7)
{
goto IL_0048_1;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_8 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_9 = __this->____addNewRow_18;
NullCheck(L_8);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_10;
L_10 = Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08(L_8, L_9, Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
NullCheck(L_10);
DataRowView_EndEdit_m35008E223F1454A7D49C66FEB108CACAC77F9131(L_10, NULL);
}
IL_0048_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = __this->____table_4;
NullCheck(L_11);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_12;
L_12 = DataTable_NewRow_m57151CE8F173A66E33B098CB580B5F5DE591CD02(L_11, NULL);
__this->____addNewRow_18 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____addNewRow_18), (void*)L_12);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_13 = __this->____addNewRow_18;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_14 = (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)il2cpp_codegen_object_new(DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
NullCheck(L_14);
DataRowView__ctor_m55E3764B2780DE2A8F4711FA771BA2CBD5C64F08(L_14, __this, L_13, NULL);
V_1 = L_14;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_15 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_16 = __this->____addNewRow_18;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_17 = V_1;
NullCheck(L_15);
Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1(L_15, L_16, L_17, Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_18 = V_1;
int32_t L_19;
L_19 = DataView_IndexOf_mCF9F78D1133272135627F8721FC9BA44B6FE45D5(__this, L_18, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_20 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_20);
ListChangedEventArgs__ctor_mB48C0E1EBC7ECB9C9A1CEFBF1787D1C542FBDCAD(L_20, 1, L_19, NULL);
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, __this, L_20);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_21 = V_1;
V_2 = L_21;
goto IL_009b;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_009b:
{
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_22 = V_2;
return L_22;
}
}
// System.Void System.Data.DataView::CheckOpen()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_CheckOpen_m55D2AF52D6B8F58B5E9AE5A1218E6B72DD91FDCC (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = DataView_get_IsOpen_m14F7E0B768826F8B6DCEC9DD35E793B48EFBC329_inline(__this, NULL);
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t* L_1;
L_1 = ExceptionBuilder_NotOpen_m1C29CC0EF0C83823ED4CC9AA5BA774013461B654(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_CheckOpen_m55D2AF52D6B8F58B5E9AE5A1218E6B72DD91FDCC_RuntimeMethod_var)));
}
IL_000e:
{
return;
}
}
// System.Void System.Data.DataView::CheckSort(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_CheckSort_m695B7CCB68A0F7AA4A7F60C131462F80824E3A07 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___sort0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_4;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t* L_1;
L_1 = ExceptionBuilder_CanNotUse_m58DADC10280FB642C2F153EEB7399149A4DC0F83(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_CheckSort_m695B7CCB68A0F7AA4A7F60C131462F80824E3A07_RuntimeMethod_var)));
}
IL_000e:
{
String_t* L_2 = ___sort0;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
if (L_3)
{
goto IL_0017;
}
}
{
return;
}
IL_0017:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_4 = __this->____table_4;
String_t* L_5 = ___sort0;
NullCheck(L_4);
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* L_6;
L_6 = DataTable_ParseSortString_mC05B353F722490EAE5E0AAB7319B6C83EE302C0B(L_4, L_5, NULL);
return;
}
}
// System.Void System.Data.DataView::Close()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Close_m3D70B96EB427F3C58F37933F91A32B9EB77CCD4E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
__this->____shouldOpen_12 = (bool)0;
DataView_UpdateIndex_mE54C939B49008F8925922FED7366067C307D136E(__this, NULL);
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_0 = __this->____dvListener_28;
NullCheck(L_0);
DataViewListener_UnregisterMetaDataEvents_mF0324F4656B01F56D0881FCC605886CA510853BF(L_0, NULL);
return;
}
}
// System.Void System.Data.DataView::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_CopyTo_m2E596C47A7D4D780931F8E65D3DE9E466444ECC7 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeArray* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_CopyTo_m2E596C47A7D4D780931F8E65D3DE9E466444ECC7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_0 = __this->____index_6;
if (!L_0)
{
goto IL_0039;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_1 = __this->____index_6;
NullCheck(L_1);
RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115 L_2;
L_2 = Index_GetEnumerator_mC4395747D82DE1E101FE3A76819F4A0CE3DB2DD8(L_1, 0, NULL);
V_0 = L_2;
goto IL_0030;
}
IL_0017:
{
RuntimeArray* L_3 = ___array0;
int32_t L_4;
L_4 = RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_inline((&V_0), RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_RuntimeMethod_var);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_5;
L_5 = DataView_GetRowView_m990B4DF8225F254F66057C60E115555774491BD3(__this, L_4, NULL);
int32_t L_6 = ___index1;
NullCheck(L_3);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_3, L_5, L_6, NULL);
int32_t L_7 = ___index1;
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), DataView_CopyTo_m2E596C47A7D4D780931F8E65D3DE9E466444ECC7_RuntimeMethod_var);
___index1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_0030:
{
bool L_8;
L_8 = RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173((&V_0), RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_RuntimeMethod_var);
if (L_8)
{
goto IL_0017;
}
}
IL_0039:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_9 = __this->____addNewRow_18;
if (!L_9)
{
goto IL_0059;
}
}
{
RuntimeArray* L_10 = ___array0;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_11 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_12 = __this->____addNewRow_18;
NullCheck(L_11);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_13;
L_13 = Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08(L_11, L_12, Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
int32_t L_14 = ___index1;
NullCheck(L_10);
Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_10, L_13, L_14, NULL);
}
IL_0059:
{
return;
}
}
// System.Void System.Data.DataView::CopyTo(System.Data.DataRowView[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_CopyTo_m82053F50915E7ABA51D0DF4A72E19E16DDA5D466 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_CopyTo_m82053F50915E7ABA51D0DF4A72E19E16DDA5D466_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_0 = __this->____index_6;
if (!L_0)
{
goto IL_0035;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_1 = __this->____index_6;
NullCheck(L_1);
RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115 L_2;
L_2 = Index_GetEnumerator_mC4395747D82DE1E101FE3A76819F4A0CE3DB2DD8(L_1, 0, NULL);
V_0 = L_2;
goto IL_002c;
}
IL_0017:
{
DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* L_3 = ___array0;
int32_t L_4 = ___index1;
int32_t L_5;
L_5 = RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_inline((&V_0), RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_RuntimeMethod_var);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_6;
L_6 = DataView_GetRowView_m990B4DF8225F254F66057C60E115555774491BD3(__this, L_5, NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)L_6);
int32_t L_7 = ___index1;
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), DataView_CopyTo_m82053F50915E7ABA51D0DF4A72E19E16DDA5D466_RuntimeMethod_var);
___index1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
}
IL_002c:
{
bool L_8;
L_8 = RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173((&V_0), RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_RuntimeMethod_var);
if (L_8)
{
goto IL_0017;
}
}
IL_0035:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_9 = __this->____addNewRow_18;
if (!L_9)
{
goto IL_0051;
}
}
{
DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* L_10 = ___array0;
int32_t L_11 = ___index1;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_12 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_13 = __this->____addNewRow_18;
NullCheck(L_12);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_14;
L_14 = Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08(L_12, L_13, Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_14);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)L_14);
}
IL_0051:
{
return;
}
}
// System.Void System.Data.DataView::Delete(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Delete_mAE611B0F78E78CE4B1459120F0B026B9F864AF79 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1;
L_1 = DataView_GetRow_m77FAF760765CAB3D0A6C656FCA6056BB5C2044E8(__this, L_0, NULL);
DataView_Delete_m9724175AA44E8CB560E6BB5BADB6C8225CA0556E(__this, L_1, NULL);
return;
}
}
// System.Void System.Data.DataView::Delete(System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Delete_m9724175AA44E8CB560E6BB5BADB6C8225CA0556E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A13679D1EC7694EE80074064C9FF6E5610D8A83);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_0 = ___row0;
if (!L_0)
{
goto IL_0059;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_1 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_2;
L_2 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3 = ___row0;
NullCheck(L_3);
int32_t L_4 = L_3->____objectID_15;
NullCheck(L_1);
int64_t L_5;
L_5 = DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B(L_1, _stringLiteral5A13679D1EC7694EE80074064C9FF6E5610D8A83, L_2, L_4, DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m300DF7432001D54A4AC4BB912AA15F4A27E3EE1B_RuntimeMethod_var);
V_0 = L_5;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_004d:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_6 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int64_t L_7 = V_0;
NullCheck(L_6);
DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C(L_6, L_7, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
DataView_CheckOpen_m55D2AF52D6B8F58B5E9AE5A1218E6B72DD91FDCC(__this, NULL);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_8 = ___row0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_9 = __this->____addNewRow_18;
if ((!(((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_8) == ((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_9))))
{
goto IL_0037_1;
}
}
{
DataView_FinishAddNew_m6BCF307627EAD55E56D10C19B7B039B5BFF1ACA5(__this, (bool)0, NULL);
goto IL_0059;
}
IL_0037_1:
{
bool L_10;
L_10 = DataView_get_AllowDelete_mFCDC4B3CBA3FAD4D2EF81622AA449436338F30C4_inline(__this, NULL);
if (L_10)
{
goto IL_0045_1;
}
}
{
Exception_t* L_11;
L_11 = ExceptionBuilder_CanNotDelete_m14F1B7D68CE63CC2CC378CEB43364A7CE261DD82(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_Delete_m9724175AA44E8CB560E6BB5BADB6C8225CA0556E_RuntimeMethod_var)));
}
IL_0045_1:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_12 = ___row0;
NullCheck(L_12);
DataRow_Delete_m14B0BDEB2D6119E34523595F2A5041ACC2099392(L_12, NULL);
goto IL_0059;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0059:
{
return;
}
}
// System.Void System.Data.DataView::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Dispose_mD47B64268E815B891418161932C3F70168795CD4 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, bool ___disposing0, const RuntimeMethod* method)
{
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_0009;
}
}
{
DataView_Close_m3D70B96EB427F3C58F37933F91A32B9EB77CCD4E(__this, NULL);
}
IL_0009:
{
bool L_1 = ___disposing0;
MarshalByValueComponent_Dispose_mFED5D8C2B4C60FD87882DBF792C052953BFE414D(__this, L_1, NULL);
return;
}
}
// System.Void System.Data.DataView::FinishAddNew(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_FinishAddNew_m6BCF307627EAD55E56D10C19B7B039B5BFF1ACA5 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, bool ___success0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m2EB458E05D438C75C7F06B31038832781860144B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD0A7648EC84977B54FB6C829BDE9332137C57CED);
s_Il2CppMethodInitialized = true;
}
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
bool L_2 = ___success0;
NullCheck(L_0);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m2EB458E05D438C75C7F06B31038832781860144B(L_0, _stringLiteralD0A7648EC84977B54FB6C829BDE9332137C57CED, L_1, L_2, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m2EB458E05D438C75C7F06B31038832781860144B_RuntimeMethod_var);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3 = __this->____addNewRow_18;
V_0 = L_3;
bool L_4 = ___success0;
if (!L_4)
{
goto IL_0042;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_5 = V_0;
NullCheck(L_5);
int32_t L_6;
L_6 = DataRow_get_RowState_mC30B0279854248F452C90798F2357EC99EBBA804(L_5, NULL);
if ((!(((uint32_t)1) == ((uint32_t)L_6))))
{
goto IL_003c;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = __this->____table_4;
NullCheck(L_7);
DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* L_8;
L_8 = DataTable_get_Rows_m494EC146C4A26B22D334DE155CF3D68CE30CE718_inline(L_7, NULL);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_9 = V_0;
NullCheck(L_8);
DataRowCollection_Add_m2A36F7D52ED197BAF8002FECCA560B8AC6A28730(L_8, L_9, NULL);
goto IL_0042;
}
IL_003c:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_10 = V_0;
NullCheck(L_10);
DataRow_EndEdit_mFC2758E07775FB6566376C29E5046DE704838339(L_10, NULL);
}
IL_0042:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_11 = V_0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_12 = __this->____addNewRow_18;
if ((!(((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_11) == ((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_12))))
{
goto IL_007f;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_13 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_14 = __this->____addNewRow_18;
NullCheck(L_13);
bool L_15;
L_15 = Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2(L_13, L_14, Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2_RuntimeMethod_var);
__this->____addNewRow_18 = (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____addNewRow_18), (void*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL);
bool L_16 = ___success0;
if (L_16)
{
goto IL_006d;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_17 = V_0;
NullCheck(L_17);
DataRow_CancelEdit_m5D68C21B873F1DD9376611340A28D46994556D6D(L_17, NULL);
}
IL_006d:
{
int32_t L_18;
L_18 = DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D(__this, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_19 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_19);
ListChangedEventArgs__ctor_mB48C0E1EBC7ECB9C9A1CEFBF1787D1C542FBDCAD(L_19, 2, L_18, NULL);
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, __this, L_19);
}
IL_007f:
{
return;
}
}
// System.Collections.IEnumerator System.Data.DataView::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataView_GetEnumerator_m7F2F6E7C985492DE143E5DC148A45534F6DE430E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* V_0 = NULL;
{
int32_t L_0;
L_0 = DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D(__this, NULL);
DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* L_1 = (DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D*)(DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D*)SZArrayNew(DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D_il2cpp_TypeInfo_var, (uint32_t)L_0);
V_0 = L_1;
DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* L_2 = V_0;
DataView_CopyTo_m82053F50915E7ABA51D0DF4A72E19E16DDA5D466(__this, L_2, 0, NULL);
DataRowViewU5BU5D_tCE6B04F8519DAEF85A6009371F11223E19252A3D* L_3 = V_0;
NullCheck((RuntimeArray*)L_3);
RuntimeObject* L_4;
L_4 = Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E((RuntimeArray*)L_3, NULL);
return L_4;
}
}
// System.Boolean System.Data.DataView::System.Collections.IList.get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_Collections_IList_get_IsReadOnly_m1A455E93EA39C2B0D647381E2EDBD4288B3A5E69 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Data.DataView::System.Collections.IList.get_IsFixedSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_Collections_IList_get_IsFixedSize_mD5801C2AAA1B9F65C2FAB08913D96D858A0A15E5 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Int32 System.Data.DataView::System.Collections.IList.Add(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_System_Collections_IList_Add_m0C55BFF4A10E839C0930052F4507D9B871F7C841 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
if (L_0)
{
goto IL_0013;
}
}
{
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_1;
L_1 = VirtualFuncInvoker0< DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* >::Invoke(43 /* System.Data.DataRowView System.Data.DataView::AddNew() */, __this);
int32_t L_2;
L_2 = DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D(__this, NULL);
return ((int32_t)il2cpp_codegen_subtract(L_2, 1));
}
IL_0013:
{
Exception_t* L_3;
L_3 = ExceptionBuilder_AddExternalObject_m301541CC0506BCE9BD369BE9B72C930E952C7918(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_System_Collections_IList_Add_m0C55BFF4A10E839C0930052F4507D9B871F7C841_RuntimeMethod_var)));
}
}
// System.Void System.Data.DataView::System.Collections.IList.Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_Collections_IList_Clear_m11850989CC6EB5ED9971A5CD2207184A06B7C20D (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
Exception_t* L_0;
L_0 = ExceptionBuilder_CanNotClear_m231D8022661691158DEE87EC8CF5E699AF297153(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_System_Collections_IList_Clear_m11850989CC6EB5ED9971A5CD2207184A06B7C20D_RuntimeMethod_var)));
}
}
// System.Boolean System.Data.DataView::System.Collections.IList.Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_Collections_IList_Contains_m33F7BCF770FA1DBF1D7FFF27C059534D47E53716 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
int32_t L_1;
L_1 = DataView_IndexOf_mCF9F78D1133272135627F8721FC9BA44B6FE45D5(__this, ((DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)IsInstClass((RuntimeObject*)L_0, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var)), NULL);
return (bool)((((int32_t)((((int32_t)0) > ((int32_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Int32 System.Data.DataView::System.Collections.IList.IndexOf(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_System_Collections_IList_IndexOf_mD51143530C798000F6842A6145DB36B8634A4CA5 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
int32_t L_1;
L_1 = DataView_IndexOf_mCF9F78D1133272135627F8721FC9BA44B6FE45D5(__this, ((DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)IsInstClass((RuntimeObject*)L_0, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var)), NULL);
return L_1;
}
}
// System.Int32 System.Data.DataView::IndexOf(System.Data.DataRowView)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_IndexOf_mCF9F78D1133272135627F8721FC9BA44B6FE45D5 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* ___rowview0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* V_0 = NULL;
{
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_0 = ___rowview0;
if (!L_0)
{
goto IL_0051;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1 = __this->____addNewRow_18;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_2 = ___rowview0;
NullCheck(L_2);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3;
L_3 = DataRowView_get_Row_m784F137A476C6D40C82584E6768B23CE2EA97B77_inline(L_2, NULL);
if ((!(((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_1) == ((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_3))))
{
goto IL_001a;
}
}
{
int32_t L_4;
L_4 = DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D(__this, NULL);
return ((int32_t)il2cpp_codegen_subtract(L_4, 1));
}
IL_001a:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_5 = __this->____index_6;
if (!L_5)
{
goto IL_0051;
}
}
{
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_6 = ___rowview0;
NullCheck(L_6);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_7;
L_7 = DataRowView_get_Row_m784F137A476C6D40C82584E6768B23CE2EA97B77_inline(L_6, NULL);
NullCheck(L_7);
int32_t L_8;
L_8 = DataRow_get_RowState_mC30B0279854248F452C90798F2357EC99EBBA804(L_7, NULL);
if ((((int32_t)1) == ((int32_t)L_8)))
{
goto IL_0051;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_9 = __this->____rowViewCache_26;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_10 = ___rowview0;
NullCheck(L_10);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_11;
L_11 = DataRowView_get_Row_m784F137A476C6D40C82584E6768B23CE2EA97B77_inline(L_10, NULL);
NullCheck(L_9);
bool L_12;
L_12 = Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5(L_9, L_11, (&V_0), Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
if (!L_12)
{
goto IL_0051;
}
}
{
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_13 = V_0;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_14 = ___rowview0;
if ((!(((RuntimeObject*)(DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)L_13) == ((RuntimeObject*)(DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)L_14))))
{
goto IL_0051;
}
}
{
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_15 = ___rowview0;
int32_t L_16;
L_16 = DataView_IndexOfDataRowView_m865FCBD09ED5D4A0E640F9898BAC6DD94BCD6C86(__this, L_15, NULL);
return L_16;
}
IL_0051:
{
return (-1);
}
}
// System.Int32 System.Data.DataView::IndexOfDataRowView(System.Data.DataRowView)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_IndexOfDataRowView_m865FCBD09ED5D4A0E640F9898BAC6DD94BCD6C86 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* ___rowview0, const RuntimeMethod* method)
{
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_0 = __this->____index_6;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_1 = ___rowview0;
NullCheck(L_1);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_2;
L_2 = DataRowView_get_Row_m784F137A476C6D40C82584E6768B23CE2EA97B77_inline(L_1, NULL);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_3 = ___rowview0;
NullCheck(L_3);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_4;
L_4 = DataRowView_get_Row_m784F137A476C6D40C82584E6768B23CE2EA97B77_inline(L_3, NULL);
int32_t L_5;
L_5 = DataView_get_RowStateFilter_m63C6B3298EA30EF2D05CEBE0D11A09AEE4918C4F_inline(__this, NULL);
NullCheck(L_4);
int32_t L_6;
L_6 = DataRow_GetDefaultRowVersion_m7617AFBD6951171D809A427ECE10D6CCD18B8DAC(L_4, L_5, NULL);
NullCheck(L_2);
int32_t L_7;
L_7 = DataRow_GetRecordFromVersion_mDE75DD659D7DFF8FF190F2DD1B8C5692F2DFCFE6(L_2, ((int32_t)((int32_t)L_6&((int32_t)-1025))), NULL);
NullCheck(L_0);
int32_t L_8;
L_8 = Index_GetIndex_m0A03BD15B022760DF3FB6DCAF7C982614BF25CB8(L_0, L_7, NULL);
return L_8;
}
}
// System.Void System.Data.DataView::System.Collections.IList.Insert(System.Int32,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_Collections_IList_Insert_mAE59766A8D97FF52E1B972EA49BF4873DCF79B07 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method)
{
{
Exception_t* L_0;
L_0 = ExceptionBuilder_InsertExternalObject_m2524F482B35EEF71339A8ABF7339F006E19B4C8B(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_System_Collections_IList_Insert_mAE59766A8D97FF52E1B972EA49BF4873DCF79B07_RuntimeMethod_var)));
}
}
// System.Void System.Data.DataView::System.Collections.IList.Remove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_Collections_IList_Remove_m163A76E16AF7D2CE0EA9D8FDC4A2FE91FF049986 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject* L_0 = ___value0;
int32_t L_1;
L_1 = DataView_IndexOf_mCF9F78D1133272135627F8721FC9BA44B6FE45D5(__this, ((DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)IsInstClass((RuntimeObject*)L_0, DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var)), NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)0) > ((int32_t)L_2)))
{
goto IL_0019;
}
}
{
int32_t L_3 = V_0;
InterfaceActionInvoker1< int32_t >::Invoke(10 /* System.Void System.Collections.IList::RemoveAt(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, __this, L_3);
return;
}
IL_0019:
{
Exception_t* L_4;
L_4 = ExceptionBuilder_RemoveExternalObject_mE00A986D7B04A76416B6281588A3274A9BFFA7C3(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_System_Collections_IList_Remove_m163A76E16AF7D2CE0EA9D8FDC4A2FE91FF049986_RuntimeMethod_var)));
}
}
// System.Void System.Data.DataView::System.Collections.IList.RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_Collections_IList_RemoveAt_mB8E51ADCC243B956777F758A7C50CD13A161A392 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
DataView_Delete_mAE611B0F78E78CE4B1459120F0B026B9F864AF79(__this, L_0, NULL);
return;
}
}
// System.Data.Index System.Data.DataView::GetFindIndex(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* DataView_GetFindIndex_m4AA59AAF1BD95EEE647B3A2879D4DDB1AB1DC759 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___column0, bool ___keepIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m31CF416326CE844F20810407046CB7ABD222D8A4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mF6961A0758A1E86DAA55E7D12F543C9DC65973F3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m556957D0C784BE83E179BCFEDBE4585984DD2A25_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* V_0 = NULL;
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_0 = __this->____findIndexes_7;
if (L_0)
{
goto IL_0013;
}
}
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_1 = (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*)il2cpp_codegen_object_new(Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214_il2cpp_TypeInfo_var);
NullCheck(L_1);
Dictionary_2__ctor_mF6961A0758A1E86DAA55E7D12F543C9DC65973F3(L_1, Dictionary_2__ctor_mF6961A0758A1E86DAA55E7D12F543C9DC65973F3_RuntimeMethod_var);
__this->____findIndexes_7 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____findIndexes_7), (void*)L_1);
}
IL_0013:
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_2 = __this->____findIndexes_7;
String_t* L_3 = ___column0;
NullCheck(L_2);
bool L_4;
L_4 = Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B(L_2, L_3, (&V_0), Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B_RuntimeMethod_var);
if (!L_4)
{
goto IL_004c;
}
}
{
bool L_5 = ___keepIndex1;
if (L_5)
{
goto IL_007b;
}
}
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_6 = __this->____findIndexes_7;
String_t* L_7 = ___column0;
NullCheck(L_6);
bool L_8;
L_8 = Dictionary_2_Remove_m31CF416326CE844F20810407046CB7ABD222D8A4(L_6, L_7, Dictionary_2_Remove_m31CF416326CE844F20810407046CB7ABD222D8A4_RuntimeMethod_var);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_9 = V_0;
NullCheck(L_9);
int32_t L_10;
L_10 = Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824(L_9, NULL);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_11 = V_0;
NullCheck(L_11);
int32_t L_12;
L_12 = Index_get_RefCount_m16AD66DC00C931B2096C8180EA7BE490DD3DBC65_inline(L_11, NULL);
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
{
goto IL_007b;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_13 = V_0;
NullCheck(L_13);
int32_t L_14;
L_14 = Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824(L_13, NULL);
goto IL_007b;
}
IL_004c:
{
bool L_15 = ___keepIndex1;
if (!L_15)
{
goto IL_007b;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_16 = __this->____table_4;
String_t* L_17 = ___column0;
int32_t L_18 = __this->____recordStates_11;
RuntimeObject* L_19;
L_19 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(44 /* System.Data.IFilter System.Data.DataView::GetFilter() */, __this);
NullCheck(L_16);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_20;
L_20 = DataTable_GetIndex_mA5067E41B234326D6ED70E2F129AA7C867BB4CC9(L_16, L_17, L_18, L_19, NULL);
V_0 = L_20;
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_21 = __this->____findIndexes_7;
String_t* L_22 = ___column0;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_23 = V_0;
NullCheck(L_21);
Dictionary_2_set_Item_m556957D0C784BE83E179BCFEDBE4585984DD2A25(L_21, L_22, L_23, Dictionary_2_set_Item_m556957D0C784BE83E179BCFEDBE4585984DD2A25_RuntimeMethod_var);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_24 = V_0;
NullCheck(L_24);
Index_AddRef_m1B6D7FF926143B923B53EED1C2007739D3D6D421(L_24, NULL);
}
IL_007b:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_25 = V_0;
return L_25;
}
}
// System.Boolean System.Data.DataView::System.ComponentModel.IBindingList.get_AllowNew()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_ComponentModel_IBindingList_get_AllowNew_mEC1660B24EB2E42563EC2F3ACFD4BD47A0971E41 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = DataView_get_AllowNew_mDF7F437DBF84B9DFF4DBD76F6287ED5F3BD46C7F_inline(__this, NULL);
return L_0;
}
}
// System.Object System.Data.DataView::System.ComponentModel.IBindingList.AddNew()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataView_System_ComponentModel_IBindingList_AddNew_m82DB0269A82AD3EBF3187CA1944FB717AF524D8E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_0;
L_0 = VirtualFuncInvoker0< DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* >::Invoke(43 /* System.Data.DataRowView System.Data.DataView::AddNew() */, __this);
return L_0;
}
}
// System.Boolean System.Data.DataView::System.ComponentModel.IBindingList.get_AllowEdit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_ComponentModel_IBindingList_get_AllowEdit_m617D83A5281D827BDCED9029E9A9465EADC534B8 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = DataView_get_AllowEdit_m30F56486FC5FACCDC04ECEE8214A4E15D53DC0D1_inline(__this, NULL);
return L_0;
}
}
// System.Boolean System.Data.DataView::System.ComponentModel.IBindingList.get_AllowRemove()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_ComponentModel_IBindingList_get_AllowRemove_m5BB518D48F6DF114FD856B4D07D06C98FC6BC2B9 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = DataView_get_AllowDelete_mFCDC4B3CBA3FAD4D2EF81622AA449436338F30C4_inline(__this, NULL);
return L_0;
}
}
// System.Boolean System.Data.DataView::System.ComponentModel.IBindingList.get_SupportsChangeNotification()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_ComponentModel_IBindingList_get_SupportsChangeNotification_mB08FC1138750B237FCF258C13E2C07A5CE3D8B13 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Data.DataView::System.ComponentModel.IBindingList.get_SupportsSearching()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_ComponentModel_IBindingList_get_SupportsSearching_m62F2A26D256403265D1DAC0399F043DD805B4F1C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Data.DataView::System.ComponentModel.IBindingList.get_SupportsSorting()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_ComponentModel_IBindingList_get_SupportsSorting_mB1F360944E2A32CF80925F4C0058F3B161212632 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Data.DataView::System.ComponentModel.IBindingList.get_IsSorted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataView_System_ComponentModel_IBindingList_get_IsSorted_mFB40CFFEA8EA1261D2BA7B40267D6644FDAF03A8 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
String_t* L_0;
L_0 = DataView_get_Sort_m4864794D5203372CB5BD5E666E7D7DBA2CCE01AE(__this, NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
return (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.ComponentModel.PropertyDescriptor System.Data.DataView::System.ComponentModel.IBindingList.get_SortProperty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* DataView_System_ComponentModel_IBindingList_get_SortProperty_m683DD69B4ACA66E6151C8A1DF98129807858C966 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_0;
L_0 = DataView_GetSortProperty_m72781C5116921EC3A76B6CC0F17D5085B62FDC1E(__this, NULL);
return L_0;
}
}
// System.ComponentModel.PropertyDescriptor System.Data.DataView::GetSortProperty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* DataView_GetSortProperty_m72781C5116921EC3A76B6CC0F17D5085B62FDC1E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_4;
if (!L_0)
{
goto IL_003c;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_1 = __this->____index_6;
if (!L_1)
{
goto IL_003c;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_2 = __this->____index_6;
NullCheck(L_2);
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* L_3 = L_2->____indexFields_1;
NullCheck(L_3);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))) == ((uint32_t)1))))
{
goto IL_003c;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_4 = __this->____index_6;
NullCheck(L_4);
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* L_5 = L_4->____indexFields_1;
NullCheck(L_5);
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_6 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))->___Column_0;
DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3* L_7 = (DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3*)il2cpp_codegen_object_new(DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var);
NullCheck(L_7);
DataColumnPropertyDescriptor__ctor_mA391445FC10FF08FE19D98B03B0D74EEDB8F574C(L_7, L_6, NULL);
return L_7;
}
IL_003c:
{
return (PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381*)NULL;
}
}
// System.ComponentModel.ListSortDirection System.Data.DataView::System.ComponentModel.IBindingList.get_SortDirection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_System_ComponentModel_IBindingList_get_SortDirection_mB31EDEF89A7ADA1B5EC3046DDCC0708CBD889E53 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_0 = __this->____index_6;
NullCheck(L_0);
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* L_1 = L_0->____indexFields_1;
NullCheck(L_1);
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) == ((uint32_t)1))))
{
goto IL_0028;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_2 = __this->____index_6;
NullCheck(L_2);
IndexFieldU5BU5D_t2E1FE07C5E6C8080FCF4908199FFDFEBA1EECA3E* L_3 = L_2->____indexFields_1;
NullCheck(L_3);
bool L_4 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))->___IsDescending_1;
if (L_4)
{
goto IL_002a;
}
}
IL_0028:
{
return (int32_t)(0);
}
IL_002a:
{
return (int32_t)(1);
}
}
// System.Void System.Data.DataView::System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_ComponentModel_IBindingList_AddIndex_m38E767FE7B845F2F0385C116202362058F204520 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___property0, const RuntimeMethod* method)
{
{
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_0 = ___property0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_0);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_2;
L_2 = DataView_GetFindIndex_m4AA59AAF1BD95EEE647B3A2879D4DDB1AB1DC759(__this, L_1, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataView::System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_ComponentModel_IBindingList_ApplySort_m360DD35B81D9E7527F6E8641D3F20E36BDBF75E3 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___property0, int32_t ___direction1, const RuntimeMethod* method)
{
{
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_0 = ___property0;
int32_t L_1 = ___direction1;
String_t* L_2;
L_2 = DataView_CreateSortString_m9B65316F651021D0E949831DC9348119E4281BEB(__this, L_0, L_1, NULL);
DataView_set_Sort_mBC381FD380638576BE18CEF1FD041415A52358C2(__this, L_2, NULL);
return;
}
}
// System.Int32 System.Data.DataView::System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_System_ComponentModel_IBindingList_Find_mBE63C4EE371152FA9A8161D8140C0A7D7F93848C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___property0, RuntimeObject* ___key1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* V_1 = NULL;
Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB V_2;
memset((&V_2), 0, sizeof(V_2));
int32_t V_3 = 0;
{
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_0 = ___property0;
if (!L_0)
{
goto IL_0099;
}
}
{
V_0 = (bool)0;
V_1 = (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*)NULL;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_007b:
{// begin finally (depth: 1)
{
bool L_1 = V_0;
if (!L_1)
{
goto IL_0098;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_2 = V_1;
if (!L_2)
{
goto IL_0098;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_3 = V_1;
NullCheck(L_3);
int32_t L_4;
L_4 = Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824(L_3, NULL);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_5 = V_1;
NullCheck(L_5);
int32_t L_6;
L_6 = Index_get_RefCount_m16AD66DC00C931B2096C8180EA7BE490DD3DBC65_inline(L_5, NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)1))))
{
goto IL_0098;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_7 = V_1;
NullCheck(L_7);
int32_t L_8;
L_8 = Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824(L_7, NULL);
}
IL_0098:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_9 = __this->____findIndexes_7;
if (!L_9)
{
goto IL_0027_1;
}
}
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_10 = __this->____findIndexes_7;
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_11 = ___property0;
NullCheck(L_11);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_11);
NullCheck(L_10);
bool L_13;
L_13 = Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B(L_10, L_12, (&V_1), Dictionary_2_TryGetValue_mDEE6FCC6225F32EB3AC5952394FBB8284026B98B_RuntimeMethod_var);
if (L_13)
{
goto IL_004d_1;
}
}
IL_0027_1:
{
V_0 = (bool)1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_14 = __this->____table_4;
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_15 = ___property0;
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_15);
int32_t L_17 = __this->____recordStates_11;
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(44 /* System.Data.IFilter System.Data.DataView::GetFilter() */, __this);
NullCheck(L_14);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_19;
L_19 = DataTable_GetIndex_mA5067E41B234326D6ED70E2F129AA7C867BB4CC9(L_14, L_16, L_17, L_18, NULL);
V_1 = L_19;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_20 = V_1;
NullCheck(L_20);
Index_AddRef_m1B6D7FF926143B923B53EED1C2007739D3D6D421(L_20, NULL);
}
IL_004d_1:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_21 = V_1;
RuntimeObject* L_22 = ___key1;
NullCheck(L_21);
Range_t9EC5E2092369BE26B499D5A6583CFAA391DDBACB L_23;
L_23 = Index_FindRecords_mBF148B62588255E4E25835F2965A45B28348B019(L_21, L_22, NULL);
V_2 = L_23;
bool L_24;
L_24 = Range_get_IsNull_m7024C635D7C6D09F1ABBAA1D04E409CAB113FB68((&V_2), NULL);
if (L_24)
{
goto IL_0079_1;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_25 = __this->____index_6;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_26 = V_1;
int32_t L_27;
L_27 = Range_get_Min_m92B3060A125786BAFDB828CF276DAC61743957B9((&V_2), NULL);
NullCheck(L_26);
int32_t L_28;
L_28 = Index_GetRecord_m8394B5ABD0C9762A340533A441A204A920718EA1(L_26, L_27, NULL);
NullCheck(L_25);
int32_t L_29;
L_29 = Index_GetIndex_m0A03BD15B022760DF3FB6DCAF7C982614BF25CB8(L_25, L_28, NULL);
V_3 = L_29;
goto IL_009b;
}
IL_0079_1:
{
goto IL_0099;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0099:
{
return (-1);
}
IL_009b:
{
int32_t L_30 = V_3;
return L_30;
}
}
// System.Void System.Data.DataView::System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_ComponentModel_IBindingList_RemoveIndex_m40B06634098C3D6EC87C0DE7E15A7E3C9AEBCE9A (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___property0, const RuntimeMethod* method)
{
{
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_0 = ___property0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_0);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_2;
L_2 = DataView_GetFindIndex_m4AA59AAF1BD95EEE647B3A2879D4DDB1AB1DC759(__this, L_1, (bool)0, NULL);
return;
}
}
// System.Void System.Data.DataView::System.ComponentModel.IBindingList.RemoveSort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_System_ComponentModel_IBindingList_RemoveSort_mB981A080E3E3DCB3A88B15849C20F03184814AFC (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AB28FA68EC2026820265EFF3939926C9DB6B035);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
NullCheck(L_0);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C(L_0, _stringLiteral9AB28FA68EC2026820265EFF3939926C9DB6B035, L_1, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD452623F9A1211D4A159E0FC28526BFB996E866C_RuntimeMethod_var);
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
DataView_set_Sort_mBC381FD380638576BE18CEF1FD041415A52358C2(__this, L_2, NULL);
return;
}
}
// System.String System.Data.DataView::CreateSortString(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataView_CreateSortString_m9B65316F651021D0E949831DC9348119E4281BEB (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* ___property0, int32_t ___direction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8857C9610AB8A060809394F329727DC3E1734BF7);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_0 = L_0;
StringBuilder_t* L_1 = V_0;
NullCheck(L_1);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_1, ((int32_t)91), NULL);
StringBuilder_t* L_3 = V_0;
PropertyDescriptor_t03F8CBE01C4EDA631BF9BE7D9EB32C8F30F13381* L_4 = ___property0;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.ComponentModel.MemberDescriptor::get_Name() */, L_4);
NullCheck(L_3);
StringBuilder_t* L_6;
L_6 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, L_5, NULL);
StringBuilder_t* L_7 = V_0;
NullCheck(L_7);
StringBuilder_t* L_8;
L_8 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_7, ((int32_t)93), NULL);
int32_t L_9 = ___direction1;
if ((!(((uint32_t)1) == ((uint32_t)L_9))))
{
goto IL_0035;
}
}
{
StringBuilder_t* L_10 = V_0;
NullCheck(L_10);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_10, _stringLiteral8857C9610AB8A060809394F329727DC3E1734BF7, NULL);
}
IL_0035:
{
StringBuilder_t* L_12 = V_0;
NullCheck(L_12);
String_t* L_13;
L_13 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12);
return L_13;
}
}
// System.String System.Data.DataView::System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataView_System_ComponentModel_ITypedList_GetListName_m786EA91E512A0C71E0A7F07750F1B6418B9B6563 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* ___listAccessors0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* V_0 = NULL;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_1 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_4;
if (!L_0)
{
goto IL_0043;
}
}
{
PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* L_1 = ___listAccessors0;
if (!L_1)
{
goto IL_000f;
}
}
{
PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* L_2 = ___listAccessors0;
NullCheck(L_2);
if ((((RuntimeArray*)L_2)->max_length))
{
goto IL_001b;
}
}
IL_000f:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = __this->____table_4;
NullCheck(L_3);
String_t* L_4;
L_4 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_3, NULL);
return L_4;
}
IL_001b:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_5 = __this->____table_4;
NullCheck(L_5);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_6;
L_6 = DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline(L_5, NULL);
V_0 = L_6;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_7 = V_0;
if (!L_7)
{
goto IL_0043;
}
}
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_8 = V_0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = __this->____table_4;
PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* L_10 = ___listAccessors0;
NullCheck(L_8);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11;
L_11 = DataSet_FindTable_m5896111DB1702F7A7164438C9EA7AC3E15822C99(L_8, L_9, L_10, 0, NULL);
V_1 = L_11;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_12 = V_1;
if (!L_12)
{
goto IL_0043;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_13 = V_1;
NullCheck(L_13);
String_t* L_14;
L_14 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_13, NULL);
return L_14;
}
IL_0043:
{
String_t* L_15 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
return L_15;
}
}
// System.ComponentModel.PropertyDescriptorCollection System.Data.DataView::System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* DataView_System_ComponentModel_ITypedList_GetItemProperties_m2863BB1CBFA514F53D00CD7A8DB91B1310942BD8 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* ___listAccessors0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* V_0 = NULL;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_1 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_4;
if (!L_0)
{
goto IL_004c;
}
}
{
PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* L_1 = ___listAccessors0;
if (!L_1)
{
goto IL_000f;
}
}
{
PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* L_2 = ___listAccessors0;
NullCheck(L_2);
if ((((RuntimeArray*)L_2)->max_length))
{
goto IL_001c;
}
}
IL_000f:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = __this->____table_4;
NullCheck(L_3);
PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* L_4;
L_4 = DataTable_GetPropertyDescriptorCollection_mC9F32F002D01468B9DD5D512CDB0EC09A893FDF5(L_3, (AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1*)NULL, NULL);
return L_4;
}
IL_001c:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_5 = __this->____table_4;
NullCheck(L_5);
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_6;
L_6 = DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline(L_5, NULL);
V_0 = L_6;
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_7 = V_0;
if (L_7)
{
goto IL_0032;
}
}
{
PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* L_8 = (PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE*)il2cpp_codegen_object_new(PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE_il2cpp_TypeInfo_var);
NullCheck(L_8);
PropertyDescriptorCollection__ctor_m3D1AC0D2B3187A895AE8B64AC891251860D8C361(L_8, (PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321*)NULL, NULL);
return L_8;
}
IL_0032:
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_9 = V_0;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_10 = __this->____table_4;
PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321* L_11 = ___listAccessors0;
NullCheck(L_9);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_12;
L_12 = DataSet_FindTable_m5896111DB1702F7A7164438C9EA7AC3E15822C99(L_9, L_10, L_11, 0, NULL);
V_1 = L_12;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_13 = V_1;
if (!L_13)
{
goto IL_004c;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_14 = V_1;
NullCheck(L_14);
PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* L_15;
L_15 = DataTable_GetPropertyDescriptorCollection_mC9F32F002D01468B9DD5D512CDB0EC09A893FDF5(L_14, (AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1*)NULL, NULL);
return L_15;
}
IL_004c:
{
PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE* L_16 = (PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE*)il2cpp_codegen_object_new(PropertyDescriptorCollection_tC4C2FA51126BD032E2E9A0472995F7FCAC6E70DE_il2cpp_TypeInfo_var);
NullCheck(L_16);
PropertyDescriptorCollection__ctor_m3D1AC0D2B3187A895AE8B64AC891251860D8C361(L_16, (PropertyDescriptorU5BU5D_t773E52CC51A2ABE902F526B23CB417FBFF741321*)NULL, NULL);
return L_16;
}
}
// System.Data.IFilter System.Data.DataView::GetFilter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataView_GetFilter_mD9A035BD99614F6CFEC4C541EE770C7BAE2F5AB1 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____rowFilter_10;
return L_0;
}
}
// System.Int32 System.Data.DataView::GetRecord(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_GetRecord_m22F0361A6942F721ADBAC2413AF3D61E7E0E648E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___recordIndex0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D(__this, NULL);
int32_t L_1 = ___recordIndex0;
if ((!(((uint32_t)L_0) <= ((uint32_t)L_1))))
{
goto IL_0010;
}
}
{
int32_t L_2 = ___recordIndex0;
Exception_t* L_3;
L_3 = ExceptionBuilder_RowOutOfRange_mE4D303B21CA0AC3A6F20E09AA7ABF68AF89BB5A2(L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_GetRecord_m22F0361A6942F721ADBAC2413AF3D61E7E0E648E_RuntimeMethod_var)));
}
IL_0010:
{
int32_t L_4 = ___recordIndex0;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_5 = __this->____index_6;
NullCheck(L_5);
int32_t L_6;
L_6 = Index_get_RecordCount_mD2C55E6DC12BC4F256C0B27D1A9FEB100C35A7FD_inline(L_5, NULL);
if ((((int32_t)L_4) == ((int32_t)L_6)))
{
goto IL_002b;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_7 = __this->____index_6;
int32_t L_8 = ___recordIndex0;
NullCheck(L_7);
int32_t L_9;
L_9 = Index_GetRecord_m8394B5ABD0C9762A340533A441A204A920718EA1(L_7, L_8, NULL);
return L_9;
}
IL_002b:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_10 = __this->____addNewRow_18;
NullCheck(L_10);
int32_t L_11;
L_11 = DataRow_GetDefaultRecord_mD5D5E39FAD5E6F12A257BD92CC372BDBB1323DA8(L_10, NULL);
return L_11;
}
}
// System.Data.DataRow System.Data.DataView::GetRow(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* DataView_GetRow_m77FAF760765CAB3D0A6C656FCA6056BB5C2044E8 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___index0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0;
L_0 = DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
int32_t L_2 = ___index0;
if ((!(((uint32_t)L_1) <= ((uint32_t)L_2))))
{
goto IL_0012;
}
}
{
int32_t L_3 = ___index0;
Exception_t* L_4;
L_4 = ExceptionBuilder_GetElementIndex_m04A569444F4B592D15890F2212F617B5897416B0(L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_GetRow_m77FAF760765CAB3D0A6C656FCA6056BB5C2044E8_RuntimeMethod_var)));
}
IL_0012:
{
int32_t L_5 = ___index0;
int32_t L_6 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_6, 1))))))
{
goto IL_0027;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_7 = __this->____addNewRow_18;
if (!L_7)
{
goto IL_0027;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_8 = __this->____addNewRow_18;
return L_8;
}
IL_0027:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = __this->____table_4;
NullCheck(L_9);
RecordManager_t5525269209BE5391607F8C811470AC2EC5C8FA4A* L_10 = L_9->____recordManager_12;
int32_t L_11 = ___index0;
int32_t L_12;
L_12 = DataView_GetRecord_m22F0361A6942F721ADBAC2413AF3D61E7E0E648E(__this, L_11, NULL);
NullCheck(L_10);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_13;
L_13 = RecordManager_get_Item_m0CF3CD1A1AA50D55743F52024BC059DAC1CBCE62(L_10, L_12, NULL);
return L_13;
}
}
// System.Data.DataRowView System.Data.DataView::GetRowView(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* DataView_GetRowView_m990B4DF8225F254F66057C60E115555774491BD3 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___record0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_4;
NullCheck(L_0);
RecordManager_t5525269209BE5391607F8C811470AC2EC5C8FA4A* L_1 = L_0->____recordManager_12;
int32_t L_2 = ___record0;
NullCheck(L_1);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3;
L_3 = RecordManager_get_Item_m0CF3CD1A1AA50D55743F52024BC059DAC1CBCE62(L_1, L_2, NULL);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_4;
L_4 = DataView_GetRowView_m5F953E3F3239D8779BAA63EF03490229AF274D69(__this, L_3, NULL);
return L_4;
}
}
// System.Data.DataRowView System.Data.DataView::GetRowView(System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* DataView_GetRowView_m5F953E3F3239D8779BAA63EF03490229AF274D69 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___dr0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_0 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1 = ___dr0;
NullCheck(L_0);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_2;
L_2 = Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08(L_0, L_1, Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
return L_2;
}
}
// System.Void System.Data.DataView::IndexListChanged(System.Object,System.ComponentModel.ListChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_IndexListChanged_m2EC366E9482F34794172CB23586444B73A4CEEDA (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e1, const RuntimeMethod* method)
{
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_0 = ___e1;
NullCheck(L_0);
int32_t L_1;
L_1 = ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline(L_0, NULL);
if (!L_1)
{
goto IL_000f;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_2 = ___e1;
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, __this, L_2);
}
IL_000f:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3 = __this->____addNewRow_18;
if (!L_3)
{
goto IL_002b;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_4 = __this->____index_6;
NullCheck(L_4);
int32_t L_5;
L_5 = Index_get_RecordCount_mD2C55E6DC12BC4F256C0B27D1A9FEB100C35A7FD_inline(L_4, NULL);
if (L_5)
{
goto IL_002b;
}
}
{
DataView_FinishAddNew_m6BCF307627EAD55E56D10C19B7B039B5BFF1ACA5(__this, (bool)0, NULL);
}
IL_002b:
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_6 = ___e1;
NullCheck(L_6);
int32_t L_7;
L_7 = ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline(L_6, NULL);
if (L_7)
{
goto IL_003a;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_8 = ___e1;
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, __this, L_8);
}
IL_003a:
{
return;
}
}
// System.Void System.Data.DataView::IndexListChangedInternal(System.ComponentModel.ListChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_IndexListChangedInternal_m9E10A81FCAAA0FAD57CD4465BB6D50082318CF3F (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_m5E3A035271CAE9A9CE6FEA33AEDB4068144FEC1C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* V_0 = NULL;
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_0 = __this->____rowViewBuffer_27;
NullCheck(L_0);
Dictionary_2_Clear_m5E3A035271CAE9A9CE6FEA33AEDB4068144FEC1C(L_0, Dictionary_2_Clear_m5E3A035271CAE9A9CE6FEA33AEDB4068144FEC1C_RuntimeMethod_var);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_1 = ___e0;
NullCheck(L_1);
int32_t L_2;
L_2 = ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline(L_1, NULL);
if ((!(((uint32_t)1) == ((uint32_t)L_2))))
{
goto IL_004a;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_3 = __this->____addNewMoved_19;
if (!L_3)
{
goto IL_004a;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_4 = __this->____addNewMoved_19;
NullCheck(L_4);
int32_t L_5;
L_5 = ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline(L_4, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_6 = __this->____addNewMoved_19;
NullCheck(L_6);
int32_t L_7;
L_7 = ListChangedEventArgs_get_OldIndex_m1FBD245795E09E5BCD0889DC405F1D5260389244_inline(L_6, NULL);
if ((((int32_t)L_5) == ((int32_t)L_7)))
{
goto IL_004a;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_8 = __this->____addNewMoved_19;
V_0 = L_8;
__this->____addNewMoved_19 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____addNewMoved_19), (void*)(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_9 = V_0;
VirtualActionInvoker2< RuntimeObject*, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(45 /* System.Void System.Data.DataView::IndexListChanged(System.Object,System.ComponentModel.ListChangedEventArgs) */, __this, __this, L_9);
}
IL_004a:
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_10 = ___e0;
VirtualActionInvoker2< RuntimeObject*, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(45 /* System.Void System.Data.DataView::IndexListChanged(System.Object,System.ComponentModel.ListChangedEventArgs) */, __this, __this, L_10);
return;
}
}
// System.Void System.Data.DataView::MaintainDataView(System.ComponentModel.ListChangedType,System.Data.DataRow,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_MaintainDataView_m31906603E66E34095B2F39D7CAE05AEA2D3EF105 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, int32_t ___changedType0, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row1, bool ___trackAddRemove2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m411AF3E7B18139A040C507E711CBD6639471ED88_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* V_0 = NULL;
int32_t V_1 = 0;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* G_B10_0 = NULL;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* G_B10_1 = NULL;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* G_B10_2 = NULL;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* G_B9_0 = NULL;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* G_B9_1 = NULL;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* G_B9_2 = NULL;
{
V_0 = (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)NULL;
int32_t L_0 = ___changedType0;
switch (L_0)
{
case 0:
{
goto IL_00de;
}
case 1:
{
goto IL_0029;
}
case 2:
{
goto IL_00ae;
}
case 3:
{
goto IL_00e4;
}
case 4:
{
goto IL_00e4;
}
case 5:
{
goto IL_00e4;
}
case 6:
{
goto IL_00e4;
}
case 7:
{
goto IL_00e4;
}
}
}
{
return;
}
IL_0029:
{
bool L_1 = ___trackAddRemove2;
if (!L_1)
{
goto IL_0049;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_2 = __this->____rowViewBuffer_27;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3 = ___row1;
NullCheck(L_2);
bool L_4;
L_4 = Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5(L_2, L_3, (&V_0), Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
if (!L_4)
{
goto IL_0049;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_5 = __this->____rowViewBuffer_27;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_6 = ___row1;
NullCheck(L_5);
bool L_7;
L_7 = Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2(L_5, L_6, Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2_RuntimeMethod_var);
}
IL_0049:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_8 = ___row1;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_9 = __this->____addNewRow_18;
if ((!(((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_8) == ((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_9))))
{
goto IL_0087;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_10 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_11 = __this->____addNewRow_18;
NullCheck(L_10);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_12;
L_12 = Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08(L_10, L_11, Dictionary_2_get_Item_m6D83DA8F881BC982AC71E7E59B57A345B6DE6A08_RuntimeMethod_var);
int32_t L_13;
L_13 = DataView_IndexOfDataRowView_m865FCBD09ED5D4A0E640F9898BAC6DD94BCD6C86(__this, L_12, NULL);
V_1 = L_13;
__this->____addNewRow_18 = (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____addNewRow_18), (void*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL);
int32_t L_14 = V_1;
int32_t L_15;
L_15 = DataView_get_Count_m44EE1DC7936ABFB6E4A756A718BF1DFEE69D313D(__this, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_16 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_16);
ListChangedEventArgs__ctor_m51CD8C20F924174FDAE0CED36B57E8A53AFBBDA5(L_16, 3, L_14, ((int32_t)il2cpp_codegen_subtract(L_15, 1)), NULL);
__this->____addNewMoved_19 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->____addNewMoved_19), (void*)L_16);
return;
}
IL_0087:
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_17 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_18 = ___row1;
NullCheck(L_17);
bool L_19;
L_19 = Dictionary_2_ContainsKey_m411AF3E7B18139A040C507E711CBD6639471ED88(L_17, L_18, Dictionary_2_ContainsKey_m411AF3E7B18139A040C507E711CBD6639471ED88_RuntimeMethod_var);
if (L_19)
{
goto IL_00e4;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_20 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_21 = ___row1;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_22 = V_0;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_23 = L_22;
G_B9_0 = L_23;
G_B9_1 = L_21;
G_B9_2 = L_20;
if (L_23)
{
G_B10_0 = L_23;
G_B10_1 = L_21;
G_B10_2 = L_20;
goto IL_00a8;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_24 = ___row1;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_25 = (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)il2cpp_codegen_object_new(DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
NullCheck(L_25);
DataRowView__ctor_m55E3764B2780DE2A8F4711FA771BA2CBD5C64F08(L_25, __this, L_24, NULL);
G_B10_0 = L_25;
G_B10_1 = G_B9_1;
G_B10_2 = G_B9_2;
}
IL_00a8:
{
NullCheck(G_B10_2);
Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1(G_B10_2, G_B10_1, G_B10_0, Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
return;
}
IL_00ae:
{
bool L_26 = ___trackAddRemove2;
if (!L_26)
{
goto IL_00d0;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_27 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_28 = ___row1;
NullCheck(L_27);
bool L_29;
L_29 = Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5(L_27, L_28, (&V_0), Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_30 = V_0;
if (!L_30)
{
goto IL_00d0;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_31 = __this->____rowViewBuffer_27;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_32 = ___row1;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_33 = V_0;
NullCheck(L_31);
Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1(L_31, L_32, L_33, Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
}
IL_00d0:
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_34 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_35 = ___row1;
NullCheck(L_34);
bool L_36;
L_36 = Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2(L_34, L_35, Dictionary_2_Remove_m0A0B82658F41C925728D0485740EB8DA374101C2_RuntimeMethod_var);
return;
}
IL_00de:
{
DataView_ResetRowViewCache_m6F9EBE3978EBB10A72C48AEB4274C47C0DA9C5F9(__this, NULL);
}
IL_00e4:
{
return;
}
}
// System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_OnListChanged_m73F0C5FC89DF6B7C789102E634CBE5BDA1436AE7 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisListChangedType_t50F7E1359B1B64CCB72B35EA42266BF90E79107A_m435AF3413637EA04D8216A4D1A9A8C774A3873FB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralADCB172BBF8A9370C2FBB60FFDDB0A8D73AAB0DF);
s_Il2CppMethodInitialized = true;
}
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* V_3 = NULL;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* V_4 = NULL;
Exception_t* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
String_t* G_B8_0 = NULL;
Exception_t* G_B19_0 = NULL;
Exception_t* G_B18_0 = NULL;
int32_t G_B20_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_2 = ___e0;
NullCheck(L_2);
int32_t L_3;
L_3 = ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline(L_2, NULL);
NullCheck(L_0);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisListChangedType_t50F7E1359B1B64CCB72B35EA42266BF90E79107A_m435AF3413637EA04D8216A4D1A9A8C774A3873FB(L_0, _stringLiteralADCB172BBF8A9370C2FBB60FFDDB0A8D73AAB0DF, L_1, L_3, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisListChangedType_t50F7E1359B1B64CCB72B35EA42266BF90E79107A_m435AF3413637EA04D8216A4D1A9A8C774A3873FB_RuntimeMethod_var);
}
try
{// begin try (depth: 1)
{
V_0 = (DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*)NULL;
V_1 = (String_t*)NULL;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_4 = ___e0;
NullCheck(L_4);
int32_t L_5;
L_5 = ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline(L_4, NULL);
V_2 = L_5;
int32_t L_6 = V_2;
switch (L_6)
{
case 0:
{
goto IL_0084_1;
}
case 1:
{
goto IL_0084_1;
}
case 2:
{
goto IL_0084_1;
}
case 3:
{
goto IL_004e_1;
}
case 4:
{
goto IL_004e_1;
}
case 5:
{
goto IL_0084_1;
}
case 6:
{
goto IL_0084_1;
}
case 7:
{
goto IL_0084_1;
}
}
}
{
goto IL_0084_1;
}
IL_004e_1:
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_7 = ___e0;
NullCheck(L_7);
int32_t L_8;
L_8 = ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline(L_7, NULL);
if ((((int32_t)0) > ((int32_t)L_8)))
{
goto IL_0084_1;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_9 = ___e0;
NullCheck(L_9);
int32_t L_10;
L_10 = ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline(L_9, NULL);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_11;
L_11 = DataView_GetRow_m77FAF760765CAB3D0A6C656FCA6056BB5C2044E8(__this, L_10, NULL);
V_3 = L_11;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_12 = V_3;
NullCheck(L_12);
bool L_13;
L_13 = DataRow_get_HasPropertyChanged_m1045702A049D4C4D1418A3CB262F54A80E15ADD1(L_12, NULL);
if (!L_13)
{
goto IL_0084_1;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_14 = V_3;
NullCheck(L_14);
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_15;
L_15 = DataRow_get_LastChangedColumn_m954BC4A0BF28E06E73D8F246F3E20D3A067A966F(L_14, NULL);
V_0 = L_15;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_16 = V_0;
if (L_16)
{
goto IL_007d_1;
}
}
{
String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
G_B8_0 = L_17;
goto IL_0083_1;
}
IL_007d_1:
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_18 = V_0;
NullCheck(L_18);
String_t* L_19;
L_19 = DataColumn_get_ColumnName_mDCFFC7BE298F91C064BFBA74E581C2B7D99C7D99_inline(L_18, NULL);
G_B8_0 = L_19;
}
IL_0083_1:
{
V_1 = G_B8_0;
}
IL_0084_1:
{
ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616* L_20 = __this->____onListChanged_20;
if (!L_20)
{
goto IL_00d3_1;
}
}
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_21 = V_0;
if (!L_21)
{
goto IL_00c6_1;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_22 = ___e0;
NullCheck(L_22);
int32_t L_23;
L_23 = ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline(L_22, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_24 = ___e0;
NullCheck(L_24);
int32_t L_25;
L_25 = ListChangedEventArgs_get_OldIndex_m1FBD245795E09E5BCD0889DC405F1D5260389244_inline(L_24, NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)L_25))))
{
goto IL_00c6_1;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_26 = ___e0;
NullCheck(L_26);
int32_t L_27;
L_27 = ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline(L_26, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_28 = ___e0;
NullCheck(L_28);
int32_t L_29;
L_29 = ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline(L_28, NULL);
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_30 = V_0;
DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3* L_31 = (DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3*)il2cpp_codegen_object_new(DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var);
NullCheck(L_31);
DataColumnPropertyDescriptor__ctor_mA391445FC10FF08FE19D98B03B0D74EEDB8F574C(L_31, L_30, NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_32 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_32);
ListChangedEventArgs__ctor_mDDD788CA53FC321053AF57EA31AFC5F71C1AB83A(L_32, L_27, L_29, L_31, NULL);
V_4 = L_32;
ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616* L_33 = __this->____onListChanged_20;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_34 = V_4;
NullCheck(L_33);
ListChangedEventHandler_Invoke_mA0F0B8AB273C63F017018390414C334FD602934E_inline(L_33, __this, L_34, NULL);
goto IL_00d3_1;
}
IL_00c6_1:
{
ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616* L_35 = __this->____onListChanged_20;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_36 = ___e0;
NullCheck(L_35);
ListChangedEventHandler_Invoke_mA0F0B8AB273C63F017018390414C334FD602934E_inline(L_35, __this, L_36, NULL);
}
IL_00d3_1:
{
String_t* L_37 = V_1;
if (!L_37)
{
goto IL_00e8_1;
}
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_38 = ___e0;
NullCheck(L_38);
int32_t L_39;
L_39 = ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline(L_38, NULL);
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_40;
L_40 = DataView_get_Item_m7B26A9946756E0C5FBC61F0F0C3757D5A70FBC41(__this, L_39, NULL);
String_t* L_41 = V_1;
NullCheck(L_40);
DataRowView_RaisePropertyChangedEvent_m0C2DC13FD01CD4054432539159F9CB4421F3A582(L_40, L_41, NULL);
}
IL_00e8_1:
{
goto IL_010f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
}
{// begin filter(depth: 1)
bool __filter_local = false;
try
{// begin implicit try block
{
Exception_t* L_42 = ((Exception_t*)IsInstClass((RuntimeObject*)((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))));
G_B18_0 = L_42;
if (L_42)
{
G_B19_0 = L_42;
goto IL_00f6;
}
}
{
G_B20_0 = 0;
goto IL_0102;
}
IL_00f6:
{
V_5 = G_B19_0;
Exception_t* L_43 = V_5;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ADP_t2C39CD1D5CEFC1B88FF6F7C7AD1916F0FD538CC0_il2cpp_TypeInfo_var)));
bool L_44;
L_44 = ADP_IsCatchableExceptionType_m7A0C2618DCBDE0DC74A29D0AF2FE50CAD9DEB4B2(L_43, NULL);
G_B20_0 = ((!(((uint32_t)L_44) <= ((uint32_t)0)))? 1 : 0);
}
IL_0102:
{
__filter_local = (G_B20_0) ? true : false;
}
}// end implicit try block
catch(Il2CppExceptionWrapper&)
{// begin implicit catch block
__filter_local = false;
}// end implicit catch block
if (__filter_local)
{
goto FILTER_0104;
}
else
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_OnListChanged_m73F0C5FC89DF6B7C789102E634CBE5BDA1436AE7_RuntimeMethod_var)));
}
}// end filter (depth: 1)
FILTER_0104:
{// begin catch(filter)
Exception_t* L_45 = V_5;
Exception_t* L_46;
L_46 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(L_45, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_010f;
}// end catch (depth: 1)
IL_010f:
{
return;
}
}
// System.Void System.Data.DataView::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_Reset_mD525A2C4A853B3FFB9A135059EB3D0EB615E9785 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0;
L_0 = DataView_get_IsOpen_m14F7E0B768826F8B6DCEC9DD35E793B48EFBC329_inline(__this, NULL);
if (!L_0)
{
goto IL_0013;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_1 = __this->____index_6;
NullCheck(L_1);
Index_Reset_m95D817B7DAE23AAE2F869575CADAC2FA43C14841(L_1, NULL);
}
IL_0013:
{
return;
}
}
// System.Void System.Data.DataView::ResetRowViewCache()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ResetRowViewCache_m6F9EBE3978EBB10A72C48AEB4274C47C0DA9C5F9 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mC84A7D6E40F5394E04857E6C72F2B4C841D1CFF4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* V_0 = NULL;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* V_1 = NULL;
RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115 V_2;
memset((&V_2), 0, sizeof(V_2));
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* V_3 = NULL;
{
int32_t L_0;
L_0 = DataView_get_CountFromIndex_m5D41A7E127042D03FCD9B7118DA259B1CB69740D(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var);
DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* L_1 = ((DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_StaticFields*)il2cpp_codegen_static_fields_for(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var))->___s_default_0;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_2 = (Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B*)il2cpp_codegen_object_new(Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B_il2cpp_TypeInfo_var);
NullCheck(L_2);
Dictionary_2__ctor_mC84A7D6E40F5394E04857E6C72F2B4C841D1CFF4(L_2, L_0, L_1, Dictionary_2__ctor_mC84A7D6E40F5394E04857E6C72F2B4C841D1CFF4_RuntimeMethod_var);
V_0 = L_2;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_3 = __this->____index_6;
if (!L_3)
{
goto IL_0069;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_4 = __this->____index_6;
NullCheck(L_4);
RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115 L_5;
L_5 = Index_GetEnumerator_mC4395747D82DE1E101FE3A76819F4A0CE3DB2DD8(L_4, 0, NULL);
V_2 = L_5;
goto IL_0060;
}
IL_0028:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_6 = __this->____table_4;
NullCheck(L_6);
RecordManager_t5525269209BE5391607F8C811470AC2EC5C8FA4A* L_7 = L_6->____recordManager_12;
int32_t L_8;
L_8 = RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_inline((&V_2), RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_RuntimeMethod_var);
NullCheck(L_7);
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_9;
L_9 = RecordManager_get_Item_m0CF3CD1A1AA50D55743F52024BC059DAC1CBCE62(L_7, L_8, NULL);
V_3 = L_9;
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_10 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_11 = V_3;
NullCheck(L_10);
bool L_12;
L_12 = Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5(L_10, L_11, (&V_1), Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
if (L_12)
{
goto IL_0058;
}
}
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_13 = V_3;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_14 = (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B*)il2cpp_codegen_object_new(DataRowView_t51724505EADBB0C11EEA0252510644143191B23B_il2cpp_TypeInfo_var);
NullCheck(L_14);
DataRowView__ctor_m55E3764B2780DE2A8F4711FA771BA2CBD5C64F08(L_14, __this, L_13, NULL);
V_1 = L_14;
}
IL_0058:
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_15 = V_0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_16 = V_3;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_17 = V_1;
NullCheck(L_15);
Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1(L_15, L_16, L_17, Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
}
IL_0060:
{
bool L_18;
L_18 = RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173((&V_2), RBTreeEnumerator_MoveNext_mB00AE8BACE08D31B8BBB6420BC48380D35B58173_RuntimeMethod_var);
if (L_18)
{
goto IL_0028;
}
}
IL_0069:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_19 = __this->____addNewRow_18;
if (!L_19)
{
goto IL_0092;
}
}
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_20 = __this->____rowViewCache_26;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_21 = __this->____addNewRow_18;
NullCheck(L_20);
bool L_22;
L_22 = Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5(L_20, L_21, (&V_1), Dictionary_2_TryGetValue_m66FABBD680AB15D2261D0669DD3B4B44824A3FC5_RuntimeMethod_var);
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_23 = V_0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_24 = __this->____addNewRow_18;
DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* L_25 = V_1;
NullCheck(L_23);
Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1(L_23, L_24, L_25, Dictionary_2_Add_m24FA6C8A1C48ADB1BAF3F680CDC9EAAE2871A7E1_RuntimeMethod_var);
}
IL_0092:
{
Dictionary_2_t25892D6280676AF8A4362752A8B5485A3347E57B* L_26 = V_0;
__this->____rowViewCache_26 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->____rowViewCache_26), (void*)L_26);
return;
}
}
// System.Void System.Data.DataView::SetDataViewManager(System.Data.DataViewManager)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_SetDataViewManager_m1B91C695741ACAEB75CA31E9DE4DB825D243D596 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ___dataViewManager0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* V_0 = NULL;
DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* V_1 = NULL;
Exception_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
Exception_t* G_B10_0 = NULL;
Exception_t* G_B9_0 = NULL;
int32_t G_B11_0 = 0;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_4;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t* L_1;
L_1 = ExceptionBuilder_CanNotUse_m58DADC10280FB642C2F153EEB7399149A4DC0F83(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_SetDataViewManager_m1B91C695741ACAEB75CA31E9DE4DB825D243D596_RuntimeMethod_var)));
}
IL_000e:
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_2 = __this->____dataViewManager_3;
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_3 = ___dataViewManager0;
if ((((RuntimeObject*)(DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8*)L_2) == ((RuntimeObject*)(DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8*)L_3)))
{
goto IL_00c0;
}
}
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_4 = ___dataViewManager0;
if (!L_4)
{
goto IL_002b;
}
}
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_5 = ___dataViewManager0;
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_6 = L_5;
NullCheck(L_6);
int32_t L_7 = L_6->____nViews_4;
NullCheck(L_6);
L_6->____nViews_4 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
}
IL_002b:
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_8 = ___dataViewManager0;
__this->____dataViewManager_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataViewManager_3), (void*)L_8);
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_9 = ___dataViewManager0;
if (!L_9)
{
goto IL_00b2;
}
}
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_10 = ___dataViewManager0;
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_11 = L_10;
NullCheck(L_11);
int32_t L_12 = L_11->____nViews_4;
NullCheck(L_11);
L_11->____nViews_4 = ((int32_t)il2cpp_codegen_add(L_12, 1));
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_13 = ___dataViewManager0;
NullCheck(L_13);
DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* L_14;
L_14 = DataViewManager_get_DataViewSettings_m06DB0B13FD16F6D9FD564EBCD3A8BE66050C166D_inline(L_13, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_15 = __this->____table_4;
NullCheck(L_14);
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_16;
L_16 = VirtualFuncInvoker1< DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601*, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* >::Invoke(4 /* System.Data.DataViewSetting System.Data.DataViewSettingCollection::get_Item(System.Data.DataTable) */, L_14, L_15);
V_0 = L_16;
}
try
{// begin try (depth: 1)
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_17 = V_0;
NullCheck(L_17);
bool L_18;
L_18 = DataViewSetting_get_ApplyDefaultSort_m429025C4A76C3D7B08D1D3AA8BA7A77DDD4C0528_inline(L_17, NULL);
__this->____applyDefaultSort_17 = L_18;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_19 = __this->____table_4;
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_20 = V_0;
NullCheck(L_20);
String_t* L_21;
L_21 = DataViewSetting_get_RowFilter_mAD32BA676924256BBB3F0EA1F1ED95FA3AFD3138_inline(L_20, NULL);
DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* L_22 = (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6*)il2cpp_codegen_object_new(DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6_il2cpp_TypeInfo_var);
NullCheck(L_22);
DataExpression__ctor_m30E975EC6FE2D7B35A258FB4BDC789EF24F6C765(L_22, L_19, L_21, NULL);
V_1 = L_22;
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_23 = V_0;
NullCheck(L_23);
String_t* L_24;
L_24 = DataViewSetting_get_Sort_m75FA10BA44DC585A3CDF9F58A5434841669A6AB3_inline(L_23, NULL);
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_25 = V_0;
NullCheck(L_25);
int32_t L_26;
L_26 = DataViewSetting_get_RowStateFilter_m354B304117778ACFBA05942D4BD186FADCF8D1F9_inline(L_25, NULL);
DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* L_27 = V_1;
VirtualActionInvoker3< String_t*, int32_t, RuntimeObject* >::Invoke(47 /* System.Void System.Data.DataView::SetIndex(System.String,System.Data.DataViewRowState,System.Data.IFilter) */, __this, L_24, L_26, L_27);
goto IL_00aa;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
}
{// begin filter(depth: 1)
bool __filter_local = false;
try
{// begin implicit try block
{
Exception_t* L_28 = ((Exception_t*)IsInstClass((RuntimeObject*)((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))));
G_B9_0 = L_28;
if (L_28)
{
G_B10_0 = L_28;
goto IL_0094;
}
}
{
G_B11_0 = 0;
goto IL_009e;
}
IL_0094:
{
V_2 = G_B10_0;
Exception_t* L_29 = V_2;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ADP_t2C39CD1D5CEFC1B88FF6F7C7AD1916F0FD538CC0_il2cpp_TypeInfo_var)));
bool L_30;
L_30 = ADP_IsCatchableExceptionType_m7A0C2618DCBDE0DC74A29D0AF2FE50CAD9DEB4B2(L_29, NULL);
G_B11_0 = ((!(((uint32_t)L_30) <= ((uint32_t)0)))? 1 : 0);
}
IL_009e:
{
__filter_local = (G_B11_0) ? true : false;
}
}// end implicit try block
catch(Il2CppExceptionWrapper&)
{// begin implicit catch block
__filter_local = false;
}// end implicit catch block
if (__filter_local)
{
goto FILTER_00a0;
}
else
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataView_SetDataViewManager_m1B91C695741ACAEB75CA31E9DE4DB825D243D596_RuntimeMethod_var)));
}
}// end filter (depth: 1)
FILTER_00a0:
{// begin catch(filter)
Exception_t* L_31 = V_2;
Exception_t* L_32;
L_32 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(L_31, NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00aa;
}// end catch (depth: 1)
IL_00aa:
{
__this->____locked_5 = (bool)1;
return;
}
IL_00b2:
{
VirtualActionInvoker3< String_t*, int32_t, RuntimeObject* >::Invoke(47 /* System.Void System.Data.DataView::SetIndex(System.String,System.Data.DataViewRowState,System.Data.IFilter) */, __this, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, ((int32_t)22), (RuntimeObject*)NULL);
}
IL_00c0:
{
return;
}
}
// System.Void System.Data.DataView::SetIndex(System.String,System.Data.DataViewRowState,System.Data.IFilter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_SetIndex_m5F90DDDDCA322D7ED8258E1436A0B59A77921832 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___newSort0, int32_t ___newRowStates1, RuntimeObject* ___newRowFilter2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___newSort0;
int32_t L_1 = ___newRowStates1;
RuntimeObject* L_2 = ___newRowFilter2;
DataView_SetIndex2_mB117AC9FA8738D3FAFD9BE959C11F9703881100D(__this, L_0, L_1, L_2, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataView::SetIndex2(System.String,System.Data.DataViewRowState,System.Data.IFilter,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_SetIndex2_mB117AC9FA8738D3FAFD9BE959C11F9703881100D (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, String_t* ___newSort0, int32_t ___newRowStates1, RuntimeObject* ___newRowFilter2, bool ___fireEvent3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisDataViewRowState_tE38561F1E9C47E76575D2912569A48AC9470665D_m7984C8D0468CC78020D359E51665098E7C0B1038_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_mF8214D31031B8B278E01B1E971079356E0EFBC99_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m0FBB493C4EADB3AA57D09A4332D6E411B0FC07E0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6DB0C08828C9EE44C7B28E0374E0C8E101782B74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m8570A6D3487D7C6791BA7BAE24196B50FE316111_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m8E2A174A565FA8871770580501252B0A7DC65B34_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF39A9EB20C509355AA369C3621332104992F7075);
s_Il2CppMethodInitialized = true;
}
Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC V_0;
memset((&V_0), 0, sizeof(V_0));
KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8 V_1;
memset((&V_1), 0, sizeof(V_1));
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
String_t* L_2 = ___newSort0;
int32_t L_3 = ___newRowStates1;
NullCheck(L_0);
DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisDataViewRowState_tE38561F1E9C47E76575D2912569A48AC9470665D_m7984C8D0468CC78020D359E51665098E7C0B1038(L_0, _stringLiteralF39A9EB20C509355AA369C3621332104992F7075, L_1, L_2, L_3, DataCommonEventSource_Trace_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisString_t_TisDataViewRowState_tE38561F1E9C47E76575D2912569A48AC9470665D_m7984C8D0468CC78020D359E51665098E7C0B1038_RuntimeMethod_var);
String_t* L_4 = ___newSort0;
__this->____sort_8 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____sort_8), (void*)L_4);
int32_t L_5 = ___newRowStates1;
__this->____recordStates_11 = L_5;
RuntimeObject* L_6 = ___newRowFilter2;
__this->____rowFilter_10 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____rowFilter_10), (void*)L_6);
bool L_7 = __this->____fEndInitInProgress_25;
if (!L_7)
{
goto IL_0035;
}
}
{
return;
}
IL_0035:
{
bool L_8 = ___fireEvent3;
if (!L_8)
{
goto IL_0042;
}
}
{
VirtualActionInvoker1< bool >::Invoke(48 /* System.Void System.Data.DataView::UpdateIndex(System.Boolean) */, __this, (bool)1);
goto IL_004a;
}
IL_0042:
{
DataView_UpdateIndex_mA6AD3871E12347DFC3B76E6D2C02F371F528B3E9(__this, (bool)1, (bool)0, NULL);
}
IL_004a:
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_9 = __this->____findIndexes_7;
if (!L_9)
{
goto IL_0095;
}
}
{
Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214* L_10 = __this->____findIndexes_7;
__this->____findIndexes_7 = (Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____findIndexes_7), (void*)(Dictionary_2_t971CFC97CE2EE3599B538B829448DF46804EA214*)NULL);
NullCheck(L_10);
Enumerator_t2485D3966EDB227EDF5EEF83F3B7FB22381279FC L_11;
L_11 = Dictionary_2_GetEnumerator_mF8214D31031B8B278E01B1E971079356E0EFBC99(L_10, Dictionary_2_GetEnumerator_mF8214D31031B8B278E01B1E971079356E0EFBC99_RuntimeMethod_var);
V_0 = L_11;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0087:
{// begin finally (depth: 1)
Enumerator_Dispose_m0FBB493C4EADB3AA57D09A4332D6E411B0FC07E0((&V_0), Enumerator_Dispose_m0FBB493C4EADB3AA57D09A4332D6E411B0FC07E0_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_007c_1;
}
IL_0067_1:
{
KeyValuePair_2_t504895E80728EAEF4012E3D250303993D50292A8 L_12;
L_12 = Enumerator_get_Current_m8570A6D3487D7C6791BA7BAE24196B50FE316111_inline((&V_0), Enumerator_get_Current_m8570A6D3487D7C6791BA7BAE24196B50FE316111_RuntimeMethod_var);
V_1 = L_12;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_13;
L_13 = KeyValuePair_2_get_Value_m8E2A174A565FA8871770580501252B0A7DC65B34_inline((&V_1), KeyValuePair_2_get_Value_m8E2A174A565FA8871770580501252B0A7DC65B34_RuntimeMethod_var);
NullCheck(L_13);
int32_t L_14;
L_14 = Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824(L_13, NULL);
}
IL_007c_1:
{
bool L_15;
L_15 = Enumerator_MoveNext_m6DB0C08828C9EE44C7B28E0374E0C8E101782B74((&V_0), Enumerator_MoveNext_m6DB0C08828C9EE44C7B28E0374E0C8E101782B74_RuntimeMethod_var);
if (L_15)
{
goto IL_0067_1;
}
}
{
goto IL_0095;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0095:
{
return;
}
}
// System.Void System.Data.DataView::UpdateIndex()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_UpdateIndex_mE54C939B49008F8925922FED7366067C307D136E (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
VirtualActionInvoker1< bool >::Invoke(48 /* System.Void System.Data.DataView::UpdateIndex(System.Boolean) */, __this, (bool)0);
return;
}
}
// System.Void System.Data.DataView::UpdateIndex(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_UpdateIndex_mFE13C82BAB0609845120F11B9FD274B26A9E56D7 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, bool ___force0, const RuntimeMethod* method)
{
{
bool L_0 = ___force0;
DataView_UpdateIndex_mA6AD3871E12347DFC3B76E6D2C02F371F528B3E9(__this, L_0, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataView::UpdateIndex(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_UpdateIndex_mA6AD3871E12347DFC3B76E6D2C02F371F528B3E9 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, bool ___force0, bool ___fireEvent1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF746EE443EAFA898B43983390F9AF6CBE4AF3B1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF782AB94300F8A81FA3356461A9FF8BBFD6CEEBA);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* V_1 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_0 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int32_t L_1;
L_1 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(__this, NULL);
bool L_2 = ___force0;
NullCheck(L_0);
int64_t L_3;
L_3 = DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF746EE443EAFA898B43983390F9AF6CBE4AF3B1(L_0, _stringLiteralF782AB94300F8A81FA3356461A9FF8BBFD6CEEBA, L_1, L_2, DataCommonEventSource_EnterScope_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF746EE443EAFA898B43983390F9AF6CBE4AF3B1_RuntimeMethod_var);
V_0 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_010a:
{// begin finally (depth: 1)
il2cpp_codegen_runtime_class_init_inline(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var);
DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE* L_4 = ((DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_StaticFields*)il2cpp_codegen_static_fields_for(DataCommonEventSource_tC3BB57E78CED1A7EFBCC8F852266121F4641CBFE_il2cpp_TypeInfo_var))->___Log_0;
int64_t L_5 = V_0;
NullCheck(L_4);
DataCommonEventSource_ExitScope_m0D37CCB8C891C2965F2662EAFD04498B2A48F12C(L_4, L_5, NULL);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
bool L_6 = __this->____open_13;
bool L_7 = __this->____shouldOpen_12;
bool L_8 = ___force0;
if (!((int32_t)(((((int32_t)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0)|(int32_t)L_8)))
{
goto IL_0108_1;
}
}
{
bool L_9 = __this->____shouldOpen_12;
__this->____open_13 = L_9;
V_1 = (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*)NULL;
bool L_10 = __this->____open_13;
if (!L_10)
{
goto IL_0099_1;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = __this->____table_4;
if (!L_11)
{
goto IL_0099_1;
}
}
{
Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* L_12;
L_12 = DataView_get_SortComparison_m4DBE1F7E1797CD5BB969AFED404D600738493860_inline(__this, NULL);
if (!L_12)
{
goto IL_007b_1;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_13 = __this->____table_4;
Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* L_14;
L_14 = DataView_get_SortComparison_m4DBE1F7E1797CD5BB969AFED404D600738493860_inline(__this, NULL);
int32_t L_15 = __this->____recordStates_11;
RuntimeObject* L_16;
L_16 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(44 /* System.Data.IFilter System.Data.DataView::GetFilter() */, __this);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_17 = (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*)il2cpp_codegen_object_new(Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483_il2cpp_TypeInfo_var);
NullCheck(L_17);
Index__ctor_m0A290157A4B83396145E525BF80D7178D17E3EED(L_17, L_13, L_14, L_15, L_16, NULL);
V_1 = L_17;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_18 = V_1;
NullCheck(L_18);
Index_AddRef_m1B6D7FF926143B923B53EED1C2007739D3D6D421(L_18, NULL);
goto IL_0099_1;
}
IL_007b_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_19 = __this->____table_4;
String_t* L_20;
L_20 = DataView_get_Sort_m4864794D5203372CB5BD5E666E7D7DBA2CCE01AE(__this, NULL);
int32_t L_21 = __this->____recordStates_11;
RuntimeObject* L_22;
L_22 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(44 /* System.Data.IFilter System.Data.DataView::GetFilter() */, __this);
NullCheck(L_19);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_23;
L_23 = DataTable_GetIndex_mA5067E41B234326D6ED70E2F129AA7C867BB4CC9(L_19, L_20, L_21, L_22, NULL);
V_1 = L_23;
}
IL_0099_1:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_24 = __this->____index_6;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_25 = V_1;
if ((!(((RuntimeObject*)(Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*)L_24) == ((RuntimeObject*)(Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*)L_25))))
{
goto IL_00a4_1;
}
}
{
goto IL_0116;
}
IL_00a4_1:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_26 = __this->____index_6;
if (L_26)
{
goto IL_00b5_1;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_27 = V_1;
NullCheck(L_27);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_28;
L_28 = Index_get_Table_m7AE1679CC513F0971C6AF5043988B037A8347F47_inline(L_27, NULL);
goto IL_00c1_1;
}
IL_00b5_1:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_29 = __this->____index_6;
NullCheck(L_29);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_30;
L_30 = Index_get_Table_m7AE1679CC513F0971C6AF5043988B037A8347F47_inline(L_29, NULL);
}
IL_00c1_1:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_31 = __this->____index_6;
if (!L_31)
{
goto IL_00d4_1;
}
}
{
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_32 = __this->____dvListener_28;
NullCheck(L_32);
DataViewListener_UnregisterListChangedEvent_mFDA7BAA57739ABA5C22708E0D1EB14D91264247A(L_32, NULL);
}
IL_00d4_1:
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_33 = V_1;
__this->____index_6 = L_33;
Il2CppCodeGenWriteBarrier((void**)(&__this->____index_6), (void*)L_33);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_34 = __this->____index_6;
if (!L_34)
{
goto IL_00f4_1;
}
}
{
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_35 = __this->____dvListener_28;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_36 = __this->____index_6;
NullCheck(L_35);
DataViewListener_RegisterListChangedEvent_m2B3E7E2A06B97977F776794A3C66967D362AF5F4(L_35, L_36, NULL);
}
IL_00f4_1:
{
DataView_ResetRowViewCache_m6F9EBE3978EBB10A72C48AEB4274C47C0DA9C5F9(__this, NULL);
bool L_37 = ___fireEvent1;
if (!L_37)
{
goto IL_0108_1;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_38 = ((DataView_t882C19B1455AFCE770D60A43A690096801824A50_StaticFields*)il2cpp_codegen_static_fields_for(DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var))->___s_resetEventArgs_21;
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, __this, L_38);
}
IL_0108_1:
{
goto IL_0116;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0116:
{
return;
}
}
// System.Void System.Data.DataView::ChildRelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ChildRelationCollectionChanged_m5CAF1CBE58EF2AB38AF4693A5CC6A373C634C444 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* V_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B6_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B1_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B5_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B2_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B4_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B3_0 = NULL;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* G_B7_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B7_1 = NULL;
{
V_0 = (DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9*)NULL;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_0 = ___e1;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_0);
G_B1_0 = __this;
if ((((int32_t)L_1) == ((int32_t)1)))
{
G_B6_0 = __this;
goto IL_0042;
}
}
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_2 = ___e1;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_2);
G_B2_0 = G_B1_0;
if ((((int32_t)L_3) == ((int32_t)3)))
{
G_B5_0 = G_B1_0;
goto IL_0039;
}
}
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_4 = ___e1;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_4);
G_B3_0 = G_B2_0;
if ((((int32_t)L_5) == ((int32_t)2)))
{
G_B4_0 = G_B2_0;
goto IL_0021;
}
}
{
G_B7_0 = ((ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)(NULL));
G_B7_1 = G_B3_0;
goto IL_0058;
}
IL_0021:
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_6 = ___e1;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Object System.ComponentModel.CollectionChangeEventArgs::get_Element() */, L_6);
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* L_8 = (DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9*)il2cpp_codegen_object_new(DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9_il2cpp_TypeInfo_var);
NullCheck(L_8);
DataRelationPropertyDescriptor__ctor_mD270E4BD1165D1CB36963D8F5D32704362C27553(L_8, ((DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*)CastclassClass((RuntimeObject*)L_7, DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_il2cpp_TypeInfo_var)), NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_9 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_9);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_9, 6, L_8, NULL);
G_B7_0 = L_9;
G_B7_1 = G_B4_0;
goto IL_0058;
}
IL_0039:
{
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* L_10 = V_0;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_11 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_11);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_11, 7, L_10, NULL);
G_B7_0 = L_11;
G_B7_1 = G_B5_0;
goto IL_0058;
}
IL_0042:
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_12 = ___e1;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Object System.ComponentModel.CollectionChangeEventArgs::get_Element() */, L_12);
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* L_14 = (DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9*)il2cpp_codegen_object_new(DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9_il2cpp_TypeInfo_var);
NullCheck(L_14);
DataRelationPropertyDescriptor__ctor_mD270E4BD1165D1CB36963D8F5D32704362C27553(L_14, ((DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*)CastclassClass((RuntimeObject*)L_13, DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_il2cpp_TypeInfo_var)), NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_15 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_15);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_15, 5, L_14, NULL);
G_B7_0 = L_15;
G_B7_1 = G_B6_0;
}
IL_0058:
{
NullCheck(G_B7_1);
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, G_B7_1, G_B7_0);
return;
}
}
// System.Void System.Data.DataView::ParentRelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ParentRelationCollectionChanged_mCBEBA9A17C64416B00C06191119CABAD95C7434C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* V_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B6_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B1_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B5_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B2_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B4_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B3_0 = NULL;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* G_B7_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B7_1 = NULL;
{
V_0 = (DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9*)NULL;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_0 = ___e1;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_0);
G_B1_0 = __this;
if ((((int32_t)L_1) == ((int32_t)1)))
{
G_B6_0 = __this;
goto IL_0042;
}
}
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_2 = ___e1;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_2);
G_B2_0 = G_B1_0;
if ((((int32_t)L_3) == ((int32_t)3)))
{
G_B5_0 = G_B1_0;
goto IL_0039;
}
}
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_4 = ___e1;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_4);
G_B3_0 = G_B2_0;
if ((((int32_t)L_5) == ((int32_t)2)))
{
G_B4_0 = G_B2_0;
goto IL_0021;
}
}
{
G_B7_0 = ((ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)(NULL));
G_B7_1 = G_B3_0;
goto IL_0058;
}
IL_0021:
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_6 = ___e1;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Object System.ComponentModel.CollectionChangeEventArgs::get_Element() */, L_6);
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* L_8 = (DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9*)il2cpp_codegen_object_new(DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9_il2cpp_TypeInfo_var);
NullCheck(L_8);
DataRelationPropertyDescriptor__ctor_mD270E4BD1165D1CB36963D8F5D32704362C27553(L_8, ((DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*)CastclassClass((RuntimeObject*)L_7, DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_il2cpp_TypeInfo_var)), NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_9 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_9);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_9, 6, L_8, NULL);
G_B7_0 = L_9;
G_B7_1 = G_B4_0;
goto IL_0058;
}
IL_0039:
{
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* L_10 = V_0;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_11 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_11);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_11, 7, L_10, NULL);
G_B7_0 = L_11;
G_B7_1 = G_B5_0;
goto IL_0058;
}
IL_0042:
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_12 = ___e1;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Object System.ComponentModel.CollectionChangeEventArgs::get_Element() */, L_12);
DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9* L_14 = (DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9*)il2cpp_codegen_object_new(DataRelationPropertyDescriptor_tD2A16A5E7FA286C7D9C3C16E0D4C60A7FD2AC5D9_il2cpp_TypeInfo_var);
NullCheck(L_14);
DataRelationPropertyDescriptor__ctor_mD270E4BD1165D1CB36963D8F5D32704362C27553(L_14, ((DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*)CastclassClass((RuntimeObject*)L_13, DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656_il2cpp_TypeInfo_var)), NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_15 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_15);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_15, 5, L_14, NULL);
G_B7_0 = L_15;
G_B7_1 = G_B6_0;
}
IL_0058:
{
NullCheck(G_B7_1);
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, G_B7_1, G_B7_0);
return;
}
}
// System.Void System.Data.DataView::ColumnCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ColumnCollectionChanged_mBD61AD52F4200B692BD7C3531E432D04F386C811 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3* V_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B6_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B1_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B5_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B2_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B4_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B3_0 = NULL;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* G_B7_0 = NULL;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* G_B7_1 = NULL;
{
V_0 = (DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3*)NULL;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_0 = ___e1;
NullCheck(L_0);
int32_t L_1;
L_1 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_0);
G_B1_0 = __this;
if ((((int32_t)L_1) == ((int32_t)1)))
{
G_B6_0 = __this;
goto IL_0042;
}
}
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_2 = ___e1;
NullCheck(L_2);
int32_t L_3;
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_2);
G_B2_0 = G_B1_0;
if ((((int32_t)L_3) == ((int32_t)3)))
{
G_B5_0 = G_B1_0;
goto IL_0039;
}
}
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_4 = ___e1;
NullCheck(L_4);
int32_t L_5;
L_5 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.ComponentModel.CollectionChangeAction System.ComponentModel.CollectionChangeEventArgs::get_Action() */, L_4);
G_B3_0 = G_B2_0;
if ((((int32_t)L_5) == ((int32_t)2)))
{
G_B4_0 = G_B2_0;
goto IL_0021;
}
}
{
G_B7_0 = ((ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)(NULL));
G_B7_1 = G_B3_0;
goto IL_0058;
}
IL_0021:
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_6 = ___e1;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Object System.ComponentModel.CollectionChangeEventArgs::get_Element() */, L_6);
DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3* L_8 = (DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3*)il2cpp_codegen_object_new(DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var);
NullCheck(L_8);
DataColumnPropertyDescriptor__ctor_mA391445FC10FF08FE19D98B03B0D74EEDB8F574C(L_8, ((DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*)CastclassClass((RuntimeObject*)L_7, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_il2cpp_TypeInfo_var)), NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_9 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_9);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_9, 6, L_8, NULL);
G_B7_0 = L_9;
G_B7_1 = G_B4_0;
goto IL_0058;
}
IL_0039:
{
DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3* L_10 = V_0;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_11 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_11);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_11, 7, L_10, NULL);
G_B7_0 = L_11;
G_B7_1 = G_B5_0;
goto IL_0058;
}
IL_0042:
{
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_12 = ___e1;
NullCheck(L_12);
RuntimeObject* L_13;
L_13 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Object System.ComponentModel.CollectionChangeEventArgs::get_Element() */, L_12);
DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3* L_14 = (DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3*)il2cpp_codegen_object_new(DataColumnPropertyDescriptor_tE3123E3564D152BE2D346B300BA8C33FF9A9C0B3_il2cpp_TypeInfo_var);
NullCheck(L_14);
DataColumnPropertyDescriptor__ctor_mA391445FC10FF08FE19D98B03B0D74EEDB8F574C(L_14, ((DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*)CastclassClass((RuntimeObject*)L_13, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_il2cpp_TypeInfo_var)), NULL);
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_15 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_15);
ListChangedEventArgs__ctor_m31B5AA3820BCDE3044F649BF7F08680500AC8D48(L_15, 5, L_14, NULL);
G_B7_0 = L_15;
G_B7_1 = G_B6_0;
}
IL_0058:
{
NullCheck(G_B7_1);
VirtualActionInvoker1< ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* >::Invoke(46 /* System.Void System.Data.DataView::OnListChanged(System.ComponentModel.ListChangedEventArgs) */, G_B7_1, G_B7_0);
return;
}
}
// System.Void System.Data.DataView::ColumnCollectionChangedInternal(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView_ColumnCollectionChangedInternal_m51E1A1DD871AC8F94070A35EC6EE04CC7741CB1C (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___sender0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_1 = ___e1;
VirtualActionInvoker2< RuntimeObject*, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* >::Invoke(49 /* System.Void System.Data.DataView::ColumnCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs) */, __this, L_0, L_1);
return;
}
}
// System.Int32 System.Data.DataView::get_ObjectID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3 (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____objectID_30;
return L_0;
}
}
// System.Void System.Data.DataView::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataView__cctor_m4C6664E9B01F331CF71461CDDBA8724103620BE8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_0 = (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442*)il2cpp_codegen_object_new(ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442_il2cpp_TypeInfo_var);
NullCheck(L_0);
ListChangedEventArgs__ctor_mB48C0E1EBC7ECB9C9A1CEFBF1787D1C542FBDCAD(L_0, 0, (-1), NULL);
((DataView_t882C19B1455AFCE770D60A43A690096801824A50_StaticFields*)il2cpp_codegen_static_fields_for(DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var))->___s_resetEventArgs_21 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((DataView_t882C19B1455AFCE770D60A43A690096801824A50_StaticFields*)il2cpp_codegen_static_fields_for(DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var))->___s_resetEventArgs_21), (void*)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.Data.DataView/DataRowReferenceComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowReferenceComparer__ctor_m5F9BC256C3C87F9FE47C9D11F7B3EA58BE410CB2 (DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean System.Data.DataView/DataRowReferenceComparer::Equals(System.Data.DataRow,System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataRowReferenceComparer_Equals_m09ED9FD2ED583BB77B6FE239476992C8BB5C05ED (DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___x0, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___y1, const RuntimeMethod* method)
{
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_0 = ___x0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1 = ___y1;
return (bool)((((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_0) == ((RuntimeObject*)(DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)L_1))? 1 : 0);
}
}
// System.Int32 System.Data.DataView/DataRowReferenceComparer::GetHashCode(System.Data.DataRow)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataRowReferenceComparer_GetHashCode_mE1697035B0447AD3BC2A7B8CBE07B19949AC0404 (DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___obj0, const RuntimeMethod* method)
{
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_0 = ___obj0;
NullCheck(L_0);
int32_t L_1 = L_0->____objectID_15;
return L_1;
}
}
// System.Void System.Data.DataView/DataRowReferenceComparer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataRowReferenceComparer__cctor_mF435AFF553BE7DDD7AAF65CC9D342BDA34A376FB (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8* L_0 = (DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8*)il2cpp_codegen_object_new(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var);
NullCheck(L_0);
DataRowReferenceComparer__ctor_m5F9BC256C3C87F9FE47C9D11F7B3EA58BE410CB2(L_0, NULL);
((DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_StaticFields*)il2cpp_codegen_static_fields_for(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var))->___s_default_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_StaticFields*)il2cpp_codegen_static_fields_for(DataRowReferenceComparer_tD1541229FDF72ECDA6003834593323E205266CA8_il2cpp_TypeInfo_var))->___s_default_0), (void*)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.Data.DataViewListener::.ctor(System.Data.DataView)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener__ctor_m91A57DE8E30E954812E5623CC75FAB13539009E6 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, DataView_t882C19B1455AFCE770D60A43A690096801824A50* ___dv0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_0 = ___dv0;
NullCheck(L_0);
int32_t L_1;
L_1 = DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline(L_0, NULL);
__this->____objectID_3 = L_1;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2 = ___dv0;
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_3 = (WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E*)il2cpp_codegen_object_new(WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E_il2cpp_TypeInfo_var);
NullCheck(L_3);
WeakReference__ctor_m5F9E2F970CD85965A003C0B37ABDBFAA1F5CF241(L_3, L_2, NULL);
__this->____dvWeak_0 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dvWeak_0), (void*)L_3);
return;
}
}
// System.Void System.Data.DataViewListener::ChildRelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_ChildRelationCollectionChanged_m704F85E82ED59E2344ADE70B62CA162FE3876A72 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataView_t882C19B1455AFCE770D60A43A690096801824A50* V_0 = NULL;
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_0 = __this->____dvWeak_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_0);
V_0 = ((DataView_t882C19B1455AFCE770D60A43A690096801824A50*)CastclassClass((RuntimeObject*)L_1, DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var));
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2 = V_0;
if (!L_2)
{
goto IL_001d;
}
}
{
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_3 = V_0;
RuntimeObject* L_4 = ___sender0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_5 = ___e1;
NullCheck(L_3);
DataView_ChildRelationCollectionChanged_m5CAF1CBE58EF2AB38AF4693A5CC6A373C634C444(L_3, L_4, L_5, NULL);
return;
}
IL_001d:
{
DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04(__this, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataViewListener::ParentRelationCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_ParentRelationCollectionChanged_m29B3CC7EABFCD51DC30C312878D870CA9BA3489A (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataView_t882C19B1455AFCE770D60A43A690096801824A50* V_0 = NULL;
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_0 = __this->____dvWeak_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_0);
V_0 = ((DataView_t882C19B1455AFCE770D60A43A690096801824A50*)CastclassClass((RuntimeObject*)L_1, DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var));
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2 = V_0;
if (!L_2)
{
goto IL_001d;
}
}
{
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_3 = V_0;
RuntimeObject* L_4 = ___sender0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_5 = ___e1;
NullCheck(L_3);
DataView_ParentRelationCollectionChanged_mCBEBA9A17C64416B00C06191119CABAD95C7434C(L_3, L_4, L_5, NULL);
return;
}
IL_001d:
{
DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04(__this, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataViewListener::ColumnCollectionChanged(System.Object,System.ComponentModel.CollectionChangeEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_ColumnCollectionChanged_mEDABFC6CEB5A2ECEF8E1235EA487A77FB42BC307 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataView_t882C19B1455AFCE770D60A43A690096801824A50* V_0 = NULL;
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_0 = __this->____dvWeak_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_0);
V_0 = ((DataView_t882C19B1455AFCE770D60A43A690096801824A50*)CastclassClass((RuntimeObject*)L_1, DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var));
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2 = V_0;
if (!L_2)
{
goto IL_001d;
}
}
{
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_3 = V_0;
RuntimeObject* L_4 = ___sender0;
CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* L_5 = ___e1;
NullCheck(L_3);
DataView_ColumnCollectionChangedInternal_m51E1A1DD871AC8F94070A35EC6EE04CC7741CB1C(L_3, L_4, L_5, NULL);
return;
}
IL_001d:
{
DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04(__this, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataViewListener::MaintainDataView(System.ComponentModel.ListChangedType,System.Data.DataRow,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_MaintainDataView_m863F47542ACA72D4A1CF3064D649770BCBBF5BEE (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, int32_t ___changedType0, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row1, bool ___trackAddRemove2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataView_t882C19B1455AFCE770D60A43A690096801824A50* V_0 = NULL;
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_0 = __this->____dvWeak_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_0);
V_0 = ((DataView_t882C19B1455AFCE770D60A43A690096801824A50*)CastclassClass((RuntimeObject*)L_1, DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var));
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_3 = V_0;
int32_t L_4 = ___changedType0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_5 = ___row1;
bool L_6 = ___trackAddRemove2;
NullCheck(L_3);
DataView_MaintainDataView_m31906603E66E34095B2F39D7CAE05AEA2D3EF105(L_3, L_4, L_5, L_6, NULL);
return;
}
IL_001e:
{
DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04(__this, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataViewListener::IndexListChanged(System.ComponentModel.ListChangedEventArgs)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_IndexListChanged_mD35D421821BC7F232A0817AB69871800C07C8D27 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataView_t882C19B1455AFCE770D60A43A690096801824A50* V_0 = NULL;
{
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_0 = __this->____dvWeak_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.WeakReference::get_Target() */, L_0);
V_0 = ((DataView_t882C19B1455AFCE770D60A43A690096801824A50*)CastclassClass((RuntimeObject*)L_1, DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var));
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_3 = V_0;
ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* L_4 = ___e0;
NullCheck(L_3);
DataView_IndexListChangedInternal_m9E10A81FCAAA0FAD57CD4465BB6D50082318CF3F(L_3, L_4, NULL);
return;
}
IL_001c:
{
DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04(__this, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataViewListener::RegisterMetaDataEvents(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_RegisterMetaDataEvents_mB1DC3C5FAD67F4BE3F14DC33733029BD5466264A (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewListener_ChildRelationCollectionChanged_m704F85E82ED59E2344ADE70B62CA162FE3876A72_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewListener_ColumnCollectionChanged_mEDABFC6CEB5A2ECEF8E1235EA487A77FB42BC307_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewListener_ParentRelationCollectionChanged_m29B3CC7EABFCD51DC30C312878D870CA9BA3489A_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* V_0 = NULL;
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* V_1 = NULL;
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* V_2 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
__this->____table_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_1), (void*)L_0);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
if (!L_1)
{
goto IL_008d;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
DataViewListener_RegisterListener_mED828372A7976C6BF7C7C6C35F6B5C43760B5A09(__this, L_2, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_3 = (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50*)il2cpp_codegen_object_new(CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
NullCheck(L_3);
CollectionChangeEventHandler__ctor_mD156314A1775DD9DD858912216685A469D6E2D8C(L_3, __this, (intptr_t)((void*)DataViewListener_ColumnCollectionChanged_mEDABFC6CEB5A2ECEF8E1235EA487A77FB42BC307_RuntimeMethod_var), NULL);
V_0 = L_3;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_4 = ___table0;
NullCheck(L_4);
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* L_5;
L_5 = DataTable_get_Columns_mF03D7E14E2C43C9B80521C00ABD8CBE7EA19772E_inline(L_4, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_6 = V_0;
NullCheck(L_5);
DataColumnCollection_add_ColumnPropertyChanged_m8DFB152167E1E5D0AA1E6CE7B0AC8AEFAC693EF0(L_5, L_6, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = ___table0;
NullCheck(L_7);
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* L_8;
L_8 = DataTable_get_Columns_mF03D7E14E2C43C9B80521C00ABD8CBE7EA19772E_inline(L_7, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_9 = V_0;
NullCheck(L_8);
DataColumnCollection_add_CollectionChanged_m0291CB740DE6FA0D2D635EC07A209200CEC607B6(L_8, L_9, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_10 = (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50*)il2cpp_codegen_object_new(CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
NullCheck(L_10);
CollectionChangeEventHandler__ctor_mD156314A1775DD9DD858912216685A469D6E2D8C(L_10, __this, (intptr_t)((void*)DataViewListener_ChildRelationCollectionChanged_m704F85E82ED59E2344ADE70B62CA162FE3876A72_RuntimeMethod_var), NULL);
V_1 = L_10;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_11 = ___table0;
NullCheck(L_11);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_12;
L_12 = DataTable_get_ChildRelations_mA020ACE26F7C7F02D1BA5A2BB81A6F2AD5F2EEAA(L_11, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_13 = V_1;
NullCheck(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_12, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)));
DataTableRelationCollection_add_RelationPropertyChanged_mB7656CF34B6A980C43D3548F657C86CF2C779977(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_12, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)), L_13, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_14 = ___table0;
NullCheck(L_14);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_15;
L_15 = DataTable_get_ChildRelations_mA020ACE26F7C7F02D1BA5A2BB81A6F2AD5F2EEAA(L_14, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_16 = V_1;
NullCheck(L_15);
DataRelationCollection_add_CollectionChanged_m20A6E0F403AFEA3560514A103C8A6BD702CFDAAE(L_15, L_16, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_17 = (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50*)il2cpp_codegen_object_new(CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
NullCheck(L_17);
CollectionChangeEventHandler__ctor_mD156314A1775DD9DD858912216685A469D6E2D8C(L_17, __this, (intptr_t)((void*)DataViewListener_ParentRelationCollectionChanged_m29B3CC7EABFCD51DC30C312878D870CA9BA3489A_RuntimeMethod_var), NULL);
V_2 = L_17;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_18 = ___table0;
NullCheck(L_18);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_19;
L_19 = DataTable_get_ParentRelations_m57FFCDEA0F8B8474FCEDA9B064A4875DE50498E9(L_18, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_20 = V_2;
NullCheck(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_19, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)));
DataTableRelationCollection_add_RelationPropertyChanged_mB7656CF34B6A980C43D3548F657C86CF2C779977(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_19, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)), L_20, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_21 = ___table0;
NullCheck(L_21);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_22;
L_22 = DataTable_get_ParentRelations_m57FFCDEA0F8B8474FCEDA9B064A4875DE50498E9(L_21, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_23 = V_2;
NullCheck(L_22);
DataRelationCollection_add_CollectionChanged_m20A6E0F403AFEA3560514A103C8A6BD702CFDAAE(L_22, L_23, NULL);
}
IL_008d:
{
return;
}
}
// System.Void System.Data.DataViewListener::UnregisterMetaDataEvents()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_UnregisterMetaDataEvents_mF0324F4656B01F56D0881FCC605886CA510853BF (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, const RuntimeMethod* method)
{
{
DataViewListener_UnregisterMetaDataEvents_m2757DDB241A5C274F9F7AB983FDC7CD738B84505(__this, (bool)1, NULL);
return;
}
}
// System.Void System.Data.DataViewListener::UnregisterMetaDataEvents(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_UnregisterMetaDataEvents_m2757DDB241A5C274F9F7AB983FDC7CD738B84505 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, bool ___updateListeners0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewListener_ChildRelationCollectionChanged_m704F85E82ED59E2344ADE70B62CA162FE3876A72_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewListener_ColumnCollectionChanged_mEDABFC6CEB5A2ECEF8E1235EA487A77FB42BC307_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewListener_ParentRelationCollectionChanged_m29B3CC7EABFCD51DC30C312878D870CA9BA3489A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m21F079D59F9CA562CE729468C726EDBA76744E6C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* V_0 = NULL;
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* V_1 = NULL;
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* V_2 = NULL;
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* V_3 = NULL;
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* V_4 = NULL;
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* V_5 = NULL;
bool V_6 = false;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_1;
V_0 = L_0;
__this->____table_1 = (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_1), (void*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = V_0;
if (!L_1)
{
goto IL_00bf;
}
}
{
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_2 = (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50*)il2cpp_codegen_object_new(CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
NullCheck(L_2);
CollectionChangeEventHandler__ctor_mD156314A1775DD9DD858912216685A469D6E2D8C(L_2, __this, (intptr_t)((void*)DataViewListener_ColumnCollectionChanged_mEDABFC6CEB5A2ECEF8E1235EA487A77FB42BC307_RuntimeMethod_var), NULL);
V_1 = L_2;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = V_0;
NullCheck(L_3);
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* L_4;
L_4 = DataTable_get_Columns_mF03D7E14E2C43C9B80521C00ABD8CBE7EA19772E_inline(L_3, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_5 = V_1;
NullCheck(L_4);
DataColumnCollection_remove_ColumnPropertyChanged_m0D7470BB1A38362A7D05D3225E4ECED1984F3718(L_4, L_5, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_6 = V_0;
NullCheck(L_6);
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* L_7;
L_7 = DataTable_get_Columns_mF03D7E14E2C43C9B80521C00ABD8CBE7EA19772E_inline(L_6, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_8 = V_1;
NullCheck(L_7);
DataColumnCollection_remove_CollectionChanged_m108F99EA6D32E27EE6A7F024E95512A4DB64A03B(L_7, L_8, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_9 = (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50*)il2cpp_codegen_object_new(CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
NullCheck(L_9);
CollectionChangeEventHandler__ctor_mD156314A1775DD9DD858912216685A469D6E2D8C(L_9, __this, (intptr_t)((void*)DataViewListener_ChildRelationCollectionChanged_m704F85E82ED59E2344ADE70B62CA162FE3876A72_RuntimeMethod_var), NULL);
V_2 = L_9;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_10 = V_0;
NullCheck(L_10);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_11;
L_11 = DataTable_get_ChildRelations_mA020ACE26F7C7F02D1BA5A2BB81A6F2AD5F2EEAA(L_10, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_12 = V_2;
NullCheck(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_11, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)));
DataTableRelationCollection_remove_RelationPropertyChanged_mC8D7F82AC3DCBEB359FD3AAF24209C665B39EB97(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_11, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)), L_12, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_13 = V_0;
NullCheck(L_13);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_14;
L_14 = DataTable_get_ChildRelations_mA020ACE26F7C7F02D1BA5A2BB81A6F2AD5F2EEAA(L_13, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_15 = V_2;
NullCheck(L_14);
DataRelationCollection_remove_CollectionChanged_mF9485FD4AAB54083C072E5E96434A0FD01620C05(L_14, L_15, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_16 = (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50*)il2cpp_codegen_object_new(CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50_il2cpp_TypeInfo_var);
NullCheck(L_16);
CollectionChangeEventHandler__ctor_mD156314A1775DD9DD858912216685A469D6E2D8C(L_16, __this, (intptr_t)((void*)DataViewListener_ParentRelationCollectionChanged_m29B3CC7EABFCD51DC30C312878D870CA9BA3489A_RuntimeMethod_var), NULL);
V_3 = L_16;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_17 = V_0;
NullCheck(L_17);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_18;
L_18 = DataTable_get_ParentRelations_m57FFCDEA0F8B8474FCEDA9B064A4875DE50498E9(L_17, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_19 = V_3;
NullCheck(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_18, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)));
DataTableRelationCollection_remove_RelationPropertyChanged_mC8D7F82AC3DCBEB359FD3AAF24209C665B39EB97(((DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2*)CastclassSealed((RuntimeObject*)L_18, DataTableRelationCollection_t6FC73ED4218AAA6300DB4967F24DB33AE5D055B2_il2cpp_TypeInfo_var)), L_19, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_20 = V_0;
NullCheck(L_20);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_21;
L_21 = DataTable_get_ParentRelations_m57FFCDEA0F8B8474FCEDA9B064A4875DE50498E9(L_20, NULL);
CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* L_22 = V_3;
NullCheck(L_21);
DataRelationCollection_remove_CollectionChanged_mF9485FD4AAB54083C072E5E96434A0FD01620C05(L_21, L_22, NULL);
bool L_23 = ___updateListeners0;
if (!L_23)
{
goto IL_00bf;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_24 = V_0;
NullCheck(L_24);
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_25;
L_25 = DataTable_GetListeners_m2FBA4FF6A7377D4EB968877410B144B626FF2D08_inline(L_24, NULL);
V_4 = L_25;
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_26 = V_4;
V_5 = L_26;
V_6 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00b3:
{// begin finally (depth: 1)
{
bool L_27 = V_6;
if (!L_27)
{
goto IL_00be;
}
}
{
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_28 = V_5;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_28, NULL);
}
IL_00be:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_29 = V_5;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_29, (&V_6), NULL);
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_30 = V_4;
NullCheck(L_30);
bool L_31;
L_31 = List_1_Remove_m21F079D59F9CA562CE729468C726EDBA76744E6C(L_30, __this, List_1_Remove_m21F079D59F9CA562CE729468C726EDBA76744E6C_RuntimeMethod_var);
goto IL_00bf;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00bf:
{
return;
}
}
// System.Void System.Data.DataViewListener::RegisterListChangedEvent(System.Data.Index)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_RegisterListChangedEvent_m2B3E7E2A06B97977F776794A3C66967D362AF5F4 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* ___index0, const RuntimeMethod* method)
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* V_0 = NULL;
bool V_1 = false;
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_0 = ___index0;
__this->____index_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____index_2), (void*)L_0);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_1 = ___index0;
if (!L_1)
{
goto IL_002f;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_2 = ___index0;
V_0 = L_2;
V_1 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0025:
{// begin finally (depth: 1)
{
bool L_3 = V_1;
if (!L_3)
{
goto IL_002e;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_4 = V_0;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_4, NULL);
}
IL_002e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_5 = V_0;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_5, (&V_1), NULL);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_6 = ___index0;
NullCheck(L_6);
Index_AddRef_m1B6D7FF926143B923B53EED1C2007739D3D6D421(L_6, NULL);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_7 = ___index0;
NullCheck(L_7);
Index_ListChangedAdd_m1334B0568F908F36F4C85B375E2070556EA6E62F(L_7, __this, NULL);
goto IL_002f;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_002f:
{
return;
}
}
// System.Void System.Data.DataViewListener::UnregisterListChangedEvent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_UnregisterListChangedEvent_mFDA7BAA57739ABA5C22708E0D1EB14D91264247A (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, const RuntimeMethod* method)
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* V_0 = NULL;
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* V_1 = NULL;
bool V_2 = false;
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_0 = __this->____index_2;
V_0 = L_0;
__this->____index_2 = (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____index_2), (void*)(Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483*)NULL);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_1 = V_0;
if (!L_1)
{
goto IL_0040;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_2 = V_0;
V_1 = L_2;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0036:
{// begin finally (depth: 1)
{
bool L_3 = V_2;
if (!L_3)
{
goto IL_003f;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_4 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_4, NULL);
}
IL_003f:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_5 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_5, (&V_2), NULL);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_6 = V_0;
NullCheck(L_6);
Index_ListChangedRemove_m6016C73390C4329F13E3D0AEBBECA6FF3B5E4204(L_6, __this, NULL);
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_7 = V_0;
NullCheck(L_7);
int32_t L_8;
L_8 = Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824(L_7, NULL);
if ((((int32_t)L_8) > ((int32_t)1)))
{
goto IL_0034_1;
}
}
{
Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* L_9 = V_0;
NullCheck(L_9);
int32_t L_10;
L_10 = Index_RemoveRef_m64A612DF94330D1D83E98FF3845F39CB7CBFC824(L_9, NULL);
}
IL_0034_1:
{
goto IL_0040;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0040:
{
return;
}
}
// System.Void System.Data.DataViewListener::CleanUp(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, bool ___updateListeners0, const RuntimeMethod* method)
{
{
bool L_0 = ___updateListeners0;
DataViewListener_UnregisterMetaDataEvents_m2757DDB241A5C274F9F7AB983FDC7CD738B84505(__this, L_0, NULL);
DataViewListener_UnregisterListChangedEvent_mFDA7BAA57739ABA5C22708E0D1EB14D91264247A(__this, NULL);
return;
}
}
// System.Void System.Data.DataViewListener::RegisterListener(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewListener_RegisterListener_mED828372A7976C6BF7C7C6C35F6B5C43760B5A09 (DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mBC48C78C362E58DF20F4A1B151AA1D37380DE29B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m824418EC4D37188845EB64F7948FC7C9CDF554A6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m9ABD8C2025D83ACC7FEA8E5BE103F60BE83BD06E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mEBB86FFDACA9BA0D38A48D31630B564F89A089F9_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* V_0 = NULL;
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* V_1 = NULL;
bool V_2 = false;
int32_t V_3 = 0;
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* V_4 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
NullCheck(L_0);
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_1;
L_1 = DataTable_GetListeners_m2FBA4FF6A7377D4EB968877410B144B626FF2D08_inline(L_0, NULL);
V_0 = L_1;
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_2 = V_0;
V_1 = L_2;
V_2 = (bool)0;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0055:
{// begin finally (depth: 1)
{
bool L_3 = V_2;
if (!L_3)
{
goto IL_005e;
}
}
{
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_4 = V_1;
Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_4, NULL);
}
IL_005e:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_5 = V_1;
Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_5, (&V_2), NULL);
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_6 = V_0;
NullCheck(L_6);
int32_t L_7;
L_7 = List_1_get_Count_m9ABD8C2025D83ACC7FEA8E5BE103F60BE83BD06E_inline(L_6, List_1_get_Count_m9ABD8C2025D83ACC7FEA8E5BE103F60BE83BD06E_RuntimeMethod_var);
V_3 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
goto IL_0048_1;
}
IL_001e_1:
{
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_8 = V_0;
int32_t L_9 = V_3;
NullCheck(L_8);
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_10;
L_10 = List_1_get_Item_mEBB86FFDACA9BA0D38A48D31630B564F89A089F9(L_8, L_9, List_1_get_Item_mEBB86FFDACA9BA0D38A48D31630B564F89A089F9_RuntimeMethod_var);
V_4 = L_10;
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_11 = V_4;
NullCheck(L_11);
WeakReference_tD4B0518CE911FFD9FAAB3FCD492644A354312D8E* L_12 = L_11->____dvWeak_0;
NullCheck(L_12);
bool L_13;
L_13 = VirtualFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.WeakReference::get_IsAlive() */, L_12);
if (L_13)
{
goto IL_0044_1;
}
}
{
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_14 = V_0;
int32_t L_15 = V_3;
NullCheck(L_14);
List_1_RemoveAt_m824418EC4D37188845EB64F7948FC7C9CDF554A6(L_14, L_15, List_1_RemoveAt_m824418EC4D37188845EB64F7948FC7C9CDF554A6_RuntimeMethod_var);
DataViewListener_t0CBA8E7649653B4E902870C8631CE7361109E5BA* L_16 = V_4;
NullCheck(L_16);
DataViewListener_CleanUp_m94D1AE2CE3CC80F74D8EF45F7D8D06ACF1AECC04(L_16, (bool)0, NULL);
}
IL_0044_1:
{
int32_t L_17 = V_3;
V_3 = ((int32_t)il2cpp_codegen_subtract(L_17, 1));
}
IL_0048_1:
{
int32_t L_18 = V_3;
if ((((int32_t)0) <= ((int32_t)L_18)))
{
goto IL_001e_1;
}
}
{
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_19 = V_0;
NullCheck(L_19);
List_1_Add_mBC48C78C362E58DF20F4A1B151AA1D37380DE29B_inline(L_19, __this, List_1_Add_mBC48C78C362E58DF20F4A1B151AA1D37380DE29B_RuntimeMethod_var);
goto IL_005f;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_005f:
{
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.Data.DataViewSettingCollection System.Data.DataViewManager::get_DataViewSettings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* DataViewManager_get_DataViewSettings_m06DB0B13FD16F6D9FD564EBCD3A8BE66050C166D (DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* __this, const RuntimeMethod* method)
{
{
DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* L_0 = __this->____dataViewSettingsCollection_3;
return L_0;
}
}
// System.Void System.Data.DataViewManager::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewManager__cctor_m7CCF299FA747A496A8C3CEEFB41B31E209DFD9F7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var);
NullCheck(L_0);
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
((DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8_StaticFields*)il2cpp_codegen_static_fields_for(DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8_il2cpp_TypeInfo_var))->___s_notSupported_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8_StaticFields*)il2cpp_codegen_static_fields_for(DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8_il2cpp_TypeInfo_var))->___s_notSupported_5), (void*)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.Data.DataView System.Data.DataViewManagerListItemTypeDescriptor::GetDataView(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataView_t882C19B1455AFCE770D60A43A690096801824A50* DataViewManagerListItemTypeDescriptor_GetDataView_mD23D06B2ADDC338423BE268DD332E35FF6443BF0 (DataViewManagerListItemTypeDescriptor_t30D97629D68B540EC372F806B51B5A2BC0E3AAF1* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_1 = (DataView_t882C19B1455AFCE770D60A43A690096801824A50*)il2cpp_codegen_object_new(DataView_t882C19B1455AFCE770D60A43A690096801824A50_il2cpp_TypeInfo_var);
NullCheck(L_1);
DataView__ctor_mC14F2AA8E78DE584CBA9718B35426CA498940688(L_1, L_0, NULL);
DataView_t882C19B1455AFCE770D60A43A690096801824A50* L_2 = L_1;
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_3 = __this->____dataViewManager_0;
NullCheck(L_2);
DataView_SetDataViewManager_m1B91C695741ACAEB75CA31E9DE4DB825D243D596(L_2, L_3, NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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.Data.DataViewSetting::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSetting__ctor_mAA277AB240699FC9F0F00B3764475A2E87B7A3C9 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->____sort_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____sort_2), (void*)L_0);
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
__this->____rowFilter_3 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____rowFilter_3), (void*)L_1);
__this->____rowStateFilter_4 = ((int32_t)22);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean System.Data.DataViewSetting::get_ApplyDefaultSort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataViewSetting_get_ApplyDefaultSort_m429025C4A76C3D7B08D1D3AA8BA7A77DDD4C0528 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____applyDefaultSort_5;
return L_0;
}
}
// System.Void System.Data.DataViewSetting::SetDataViewManager(System.Data.DataViewManager)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSetting_SetDataViewManager_mFEBBD3EDEF92793C0A82B2EB2A260C31818820DD (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* ___dataViewManager0, const RuntimeMethod* method)
{
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_0 = __this->____dataViewManager_0;
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_1 = ___dataViewManager0;
if ((((RuntimeObject*)(DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8*)L_0) == ((RuntimeObject*)(DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8*)L_1)))
{
goto IL_0010;
}
}
{
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_2 = ___dataViewManager0;
__this->____dataViewManager_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataViewManager_0), (void*)L_2);
}
IL_0010:
{
return;
}
}
// System.Void System.Data.DataViewSetting::SetDataTable(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSetting_SetDataTable_m25981820DC89441406B24AFADCA2C6AE717A5FF0 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
if ((((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_0) == ((RuntimeObject*)(DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*)L_1)))
{
goto IL_0010;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
__this->____table_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_1), (void*)L_2);
}
IL_0010:
{
return;
}
}
// System.String System.Data.DataViewSetting::get_RowFilter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataViewSetting_get_RowFilter_mAD32BA676924256BBB3F0EA1F1ED95FA3AFD3138 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____rowFilter_3;
return L_0;
}
}
// System.Data.DataViewRowState System.Data.DataViewSetting::get_RowStateFilter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DataViewSetting_get_RowStateFilter_m354B304117778ACFBA05942D4BD186FADCF8D1F9 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____rowStateFilter_4;
return L_0;
}
}
// System.String System.Data.DataViewSetting::get_Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataViewSetting_get_Sort_m75FA10BA44DC585A3CDF9F58A5434841669A6AB3 (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____sort_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.Data.DataViewSetting System.Data.DataViewSettingCollection::get_Item(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* DataViewSettingCollection_get_Item_m1D196B656E44AEFBDDB3BFE76F5AE0CAAD168E7C (DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* V_0 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t* L_1;
L_1 = ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB4054C6E4E11B87959DDCCED1FDA757609E47F49)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataViewSettingCollection_get_Item_m1D196B656E44AEFBDDB3BFE76F5AE0CAAD168E7C_RuntimeMethod_var)));
}
IL_000e:
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = __this->____list_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = ___table0;
NullCheck(L_2);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
V_0 = ((DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601*)CastclassClass((RuntimeObject*)L_4, DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601_il2cpp_TypeInfo_var));
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_5 = V_0;
if (L_5)
{
goto IL_0031;
}
}
{
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_6 = (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601*)il2cpp_codegen_object_new(DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601_il2cpp_TypeInfo_var);
NullCheck(L_6);
DataViewSetting__ctor_mAA277AB240699FC9F0F00B3764475A2E87B7A3C9(L_6, NULL);
V_0 = L_6;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = ___table0;
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_8 = V_0;
VirtualActionInvoker2< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*, DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* >::Invoke(5 /* System.Void System.Data.DataViewSettingCollection::set_Item(System.Data.DataTable,System.Data.DataViewSetting) */, __this, L_7, L_8);
}
IL_0031:
{
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_9 = V_0;
return L_9;
}
}
// System.Void System.Data.DataViewSettingCollection::set_Item(System.Data.DataTable,System.Data.DataViewSetting)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSettingCollection_set_Item_m00EEEE7945CA208212E7CCD9F57F7BEB5AC3C491 (DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* ___value1, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t* L_1;
L_1 = ExceptionBuilder_ArgumentNull_mF1A2F6F834DC2C7D7415BF3BCB6F0DDFDE4DF6B8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB4054C6E4E11B87959DDCCED1FDA757609E47F49)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataViewSettingCollection_set_Item_m00EEEE7945CA208212E7CCD9F57F7BEB5AC3C491_RuntimeMethod_var)));
}
IL_000e:
{
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_2 = ___value1;
DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* L_3 = __this->____dataViewManager_0;
NullCheck(L_2);
DataViewSetting_SetDataViewManager_mFEBBD3EDEF92793C0A82B2EB2A260C31818820DD(L_2, L_3, NULL);
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_4 = ___value1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_5 = ___table0;
NullCheck(L_4);
DataViewSetting_SetDataTable_m25981820DC89441406B24AFADCA2C6AE717A5FF0(L_4, L_5, NULL);
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->____list_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_7 = ___table0;
DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* L_8 = ___value1;
NullCheck(L_6);
VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(31 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_6, L_7, L_8);
return;
}
}
// System.Void System.Data.DataViewSettingCollection::Remove(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataViewSettingCollection_Remove_m0544BABF24830EA2459707E1EFCBA80391D7D7FC (DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____list_1;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
NullCheck(L_0);
VirtualActionInvoker1< RuntimeObject* >::Invoke(40 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_0, 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.Data.DefaultValueTypeConverter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultValueTypeConverter__ctor_m2FB3E6FFDD8E019F92429FE51DD86107BEBCF235 (DefaultValueTypeConverter_t30873F22C066A99FB484DF367EDC7066639DED21* __this, const RuntimeMethod* method)
{
{
StringConverter__ctor_m074D8686ED6ABC0E64C20D1EFD4406F215E7187A(__this, NULL);
return;
}
}
// System.Object System.Data.DefaultValueTypeConverter::ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultValueTypeConverter_ConvertTo_m5A8615C0EAAE995BF79A434518205A7DB1A27BA1 (DefaultValueTypeConverter_t30873F22C066A99FB484DF367EDC7066639DED21* __this, RuntimeObject* ___context0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, RuntimeObject* ___value2, Type_t* ___destinationType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC771CA5803C3AC8125373C0B531CBFFF272EC8B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___destinationType3;
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, (Type_t*)NULL, NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54F5AD89BFF7ACC574BFC039F72C349137EC667)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DefaultValueTypeConverter_ConvertTo_m5A8615C0EAAE995BF79A434518205A7DB1A27BA1_RuntimeMethod_var)));
}
IL_0015:
{
Type_t* L_3 = ___destinationType3;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_4, NULL);
bool L_6;
L_6 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_3, L_5, NULL);
if (!L_6)
{
goto IL_003f;
}
}
{
RuntimeObject* L_7 = ___value2;
if (L_7)
{
goto IL_0031;
}
}
{
return _stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1;
}
IL_0031:
{
RuntimeObject* L_8 = ___value2;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_9 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_8) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_9))))
{
goto IL_003f;
}
}
{
return _stringLiteralAC771CA5803C3AC8125373C0B531CBFFF272EC8B;
}
IL_003f:
{
RuntimeObject* L_10 = ___context0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_11 = ___culture1;
RuntimeObject* L_12 = ___value2;
Type_t* L_13 = ___destinationType3;
RuntimeObject* L_14;
L_14 = TypeConverter_ConvertTo_m5D4785A320B7ED351B677E28B77171F70E389B96(__this, L_10, L_11, L_12, L_13, NULL);
return L_14;
}
}
// System.Object System.Data.DefaultValueTypeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DefaultValueTypeConverter_ConvertFrom_mC7E158F346F16DC34263E1D047B47AAB28640817 (DefaultValueTypeConverter_t30873F22C066A99FB484DF367EDC7066639DED21* __this, RuntimeObject* ___context0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, RuntimeObject* ___value2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC771CA5803C3AC8125373C0B531CBFFF272EC8B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___value2;
if (!L_0)
{
goto IL_0045;
}
}
{
RuntimeObject* L_1 = ___value2;
NullCheck(L_1);
Type_t* L_2;
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_4;
L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL);
bool L_5;
L_5 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_2, L_4, NULL);
if (!L_5)
{
goto IL_0045;
}
}
{
RuntimeObject* L_6 = ___value2;
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
String_t* L_7 = V_0;
bool L_8;
L_8 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_7, _stringLiteralD64DE515DE159C401BB82652225D6BE22CDAD7A1, 5, NULL);
if (!L_8)
{
goto IL_0031;
}
}
{
return NULL;
}
IL_0031:
{
String_t* L_9 = V_0;
bool L_10;
L_10 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_9, _stringLiteralAC771CA5803C3AC8125373C0B531CBFFF272EC8B, 5, NULL);
if (!L_10)
{
goto IL_0045;
}
}
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_11 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
return L_11;
}
IL_0045:
{
RuntimeObject* L_12 = ___context0;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_13 = ___culture1;
RuntimeObject* L_14 = ___value2;
RuntimeObject* L_15;
L_15 = StringConverter_ConvertFrom_mDC2BBDD289C8D8259AF915CB23765888BBFAB9AC(__this, L_12, L_13, L_14, NULL);
return L_15;
}
}
#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.Data.AggregateNode::.ctor(System.Data.DataTable,System.Data.FunctionId,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateNode__ctor_m3BF534146DE8C7EA20963F22EEDCFFB4E538A728 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___aggregateType1, String_t* ___columnName2, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
int32_t L_1 = ___aggregateType1;
String_t* L_2 = ___columnName2;
AggregateNode__ctor_m17BD752374AEA6599A53DAE3114FBC1FA4EA7298(__this, L_0, L_1, L_2, (bool)1, (String_t*)NULL, NULL);
return;
}
}
// System.Void System.Data.AggregateNode::.ctor(System.Data.DataTable,System.Data.FunctionId,System.String,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateNode__ctor_m17BD752374AEA6599A53DAE3114FBC1FA4EA7298 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___aggregateType1, String_t* ___columnName2, bool ___local3, String_t* ___relationName4, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
ExpressionNode__ctor_m283F3264481483CC47247AF2E8E012F055616698(__this, L_0, NULL);
int32_t L_1 = ___aggregateType1;
__this->____aggregate_2 = L_1;
int32_t L_2 = ___aggregateType1;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)30)))))
{
goto IL_001c;
}
}
{
__this->____type_1 = 4;
goto IL_0080;
}
IL_001c:
{
int32_t L_3 = ___aggregateType1;
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)31)))))
{
goto IL_002a;
}
}
{
__this->____type_1 = 5;
goto IL_0080;
}
IL_002a:
{
int32_t L_4 = ___aggregateType1;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)32)))))
{
goto IL_0038;
}
}
{
__this->____type_1 = 6;
goto IL_0080;
}
IL_0038:
{
int32_t L_5 = ___aggregateType1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)33)))))
{
goto IL_0046;
}
}
{
__this->____type_1 = 7;
goto IL_0080;
}
IL_0046:
{
int32_t L_6 = ___aggregateType1;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)34)))))
{
goto IL_0055;
}
}
{
__this->____type_1 = ((int32_t)9);
goto IL_0080;
}
IL_0055:
{
int32_t L_7 = ___aggregateType1;
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)37)))))
{
goto IL_0064;
}
}
{
__this->____type_1 = ((int32_t)10);
goto IL_0080;
}
IL_0064:
{
int32_t L_8 = ___aggregateType1;
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)35)))))
{
goto IL_0073;
}
}
{
__this->____type_1 = ((int32_t)11);
goto IL_0080;
}
IL_0073:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Function_tAC32D286B7613834FFF024AD86D93B70554173BF_il2cpp_TypeInfo_var)));
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = ((Function_tAC32D286B7613834FFF024AD86D93B70554173BF_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Function_tAC32D286B7613834FFF024AD86D93B70554173BF_il2cpp_TypeInfo_var))))->___s_functionName_7;
int32_t L_10 = ___aggregateType1;
NullCheck(L_9);
int32_t L_11 = L_10;
String_t* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
Exception_t* L_13;
L_13 = ExprException_UndefinedFunction_m40C16992B6AAAE390CFD7B26EC917B22B7152E77(L_12, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode__ctor_m17BD752374AEA6599A53DAE3114FBC1FA4EA7298_RuntimeMethod_var)));
}
IL_0080:
{
bool L_14 = ___local3;
__this->____local_3 = L_14;
String_t* L_15 = ___relationName4;
__this->____relationName_4 = L_15;
Il2CppCodeGenWriteBarrier((void**)(&__this->____relationName_4), (void*)L_15);
String_t* L_16 = ___columnName2;
__this->____columnName_5 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->____columnName_5), (void*)L_16);
return;
}
}
// System.Void System.Data.AggregateNode::Bind(System.Data.DataTable,System.Collections.Generic.List`1<System.Data.DataColumn>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateNode_Bind_m0D852A77581E4E33ACE9ADBECF695458D39DCF20 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* ___list1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mD738A1974F4AE98C9B6146701996ABD2F0B17962_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m59541DD27A7650B8C1CF8BEE5229F1D86A6048EA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* V_1 = NULL;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* V_2 = NULL;
AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* G_B13_0 = NULL;
AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* G_B12_0 = NULL;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* G_B14_0 = NULL;
AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* G_B14_1 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
ExpressionNode_BindTable_mE73D14C3A5AD6BBEAECD63E90C3828CB21DC71DC_inline(__this, L_0, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
if (L_1)
{
goto IL_0016;
}
}
{
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
Exception_t* L_3;
L_3 = ExprException_AggregateUnbound_m9B6C3E353D158CBCFB08A73E8D02B0CCC648CB12(L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Bind_m0D852A77581E4E33ACE9ADBECF695458D39DCF20_RuntimeMethod_var)));
}
IL_0016:
{
bool L_4 = __this->____local_3;
if (!L_4)
{
goto IL_0027;
}
}
{
__this->____relation_8 = (DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____relation_8), (void*)(DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*)NULL);
goto IL_0087;
}
IL_0027:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_5 = ___table0;
NullCheck(L_5);
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_6;
L_6 = DataTable_get_ChildRelations_mA020ACE26F7C7F02D1BA5A2BB81A6F2AD5F2EEAA(L_5, NULL);
V_1 = L_6;
String_t* L_7 = __this->____relationName_4;
if (L_7)
{
goto IL_0075;
}
}
{
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Data.InternalDataCollectionBase::get_Count() */, L_8);
if ((((int32_t)L_9) <= ((int32_t)1)))
{
goto IL_0051;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_10 = ___table0;
NullCheck(L_10);
String_t* L_11;
L_11 = DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline(L_10, NULL);
String_t* L_12;
L_12 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
Exception_t* L_13;
L_13 = ExprException_UnresolvedRelation_mC31C15BBB62738835B1157267FBF5FB754112A37(L_11, L_12, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Bind_m0D852A77581E4E33ACE9ADBECF695458D39DCF20_RuntimeMethod_var)));
}
IL_0051:
{
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_14 = V_1;
NullCheck(L_14);
int32_t L_15;
L_15 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Data.InternalDataCollectionBase::get_Count() */, L_14);
if ((!(((uint32_t)L_15) == ((uint32_t)1))))
{
goto IL_0069;
}
}
{
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_16 = V_1;
NullCheck(L_16);
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_17;
L_17 = VirtualFuncInvoker1< DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*, int32_t >::Invoke(13 /* System.Data.DataRelation System.Data.DataRelationCollection::get_Item(System.Int32) */, L_16, 0);
__this->____relation_8 = L_17;
Il2CppCodeGenWriteBarrier((void**)(&__this->____relation_8), (void*)L_17);
goto IL_0087;
}
IL_0069:
{
String_t* L_18;
L_18 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
Exception_t* L_19;
L_19 = ExprException_AggregateUnbound_m9B6C3E353D158CBCFB08A73E8D02B0CCC648CB12(L_18, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Bind_m0D852A77581E4E33ACE9ADBECF695458D39DCF20_RuntimeMethod_var)));
}
IL_0075:
{
DataRelationCollection_tA8655ADC9860DD89FDC0317E38C95CB740BC2956* L_20 = V_1;
String_t* L_21 = __this->____relationName_4;
NullCheck(L_20);
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_22;
L_22 = VirtualFuncInvoker1< DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656*, String_t* >::Invoke(14 /* System.Data.DataRelation System.Data.DataRelationCollection::get_Item(System.String) */, L_20, L_21);
__this->____relation_8 = L_22;
Il2CppCodeGenWriteBarrier((void**)(&__this->____relation_8), (void*)L_22);
}
IL_0087:
{
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_23 = __this->____relation_8;
G_B12_0 = __this;
if (!L_23)
{
G_B13_0 = __this;
goto IL_009d;
}
}
{
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_24 = __this->____relation_8;
NullCheck(L_24);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_25;
L_25 = VirtualFuncInvoker0< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* >::Invoke(5 /* System.Data.DataTable System.Data.DataRelation::get_ChildTable() */, L_24);
G_B14_0 = L_25;
G_B14_1 = G_B12_0;
goto IL_009e;
}
IL_009d:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_26 = ___table0;
G_B14_0 = L_26;
G_B14_1 = G_B13_0;
}
IL_009e:
{
NullCheck(G_B14_1);
G_B14_1->____childTable_6 = G_B14_0;
Il2CppCodeGenWriteBarrier((void**)(&G_B14_1->____childTable_6), (void*)G_B14_0);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_27 = __this->____childTable_6;
NullCheck(L_27);
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* L_28;
L_28 = DataTable_get_Columns_mF03D7E14E2C43C9B80521C00ABD8CBE7EA19772E_inline(L_27, NULL);
String_t* L_29 = __this->____columnName_5;
NullCheck(L_28);
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_30;
L_30 = DataColumnCollection_get_Item_m986CAEFDCA2DD4B16E1AC08A443345CDEF53906A(L_28, L_29, NULL);
__this->____column_7 = L_30;
Il2CppCodeGenWriteBarrier((void**)(&__this->____column_7), (void*)L_30);
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_31 = __this->____column_7;
if (L_31)
{
goto IL_00d3;
}
}
{
String_t* L_32 = __this->____columnName_5;
Exception_t* L_33;
L_33 = ExprException_UnboundName_mAB678946D776975A33D8D3D33BA8577E8ECAB68F(L_32, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Bind_m0D852A77581E4E33ACE9ADBECF695458D39DCF20_RuntimeMethod_var)));
}
IL_00d3:
{
V_0 = 0;
goto IL_00ec;
}
IL_00d7:
{
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_34 = ___list1;
int32_t L_35 = V_0;
NullCheck(L_34);
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_36;
L_36 = List_1_get_Item_m59541DD27A7650B8C1CF8BEE5229F1D86A6048EA(L_34, L_35, List_1_get_Item_m59541DD27A7650B8C1CF8BEE5229F1D86A6048EA_RuntimeMethod_var);
V_2 = L_36;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_37 = __this->____column_7;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_38 = V_2;
if ((((RuntimeObject*)(DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*)L_37) == ((RuntimeObject*)(DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*)L_38)))
{
goto IL_00f5;
}
}
{
int32_t L_39 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_39, 1));
}
IL_00ec:
{
int32_t L_40 = V_0;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_41 = ___list1;
NullCheck(L_41);
int32_t L_42;
L_42 = List_1_get_Count_mD738A1974F4AE98C9B6146701996ABD2F0B17962_inline(L_41, List_1_get_Count_mD738A1974F4AE98C9B6146701996ABD2F0B17962_RuntimeMethod_var);
if ((((int32_t)L_40) < ((int32_t)L_42)))
{
goto IL_00d7;
}
}
IL_00f5:
{
int32_t L_43 = V_0;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_44 = ___list1;
NullCheck(L_44);
int32_t L_45;
L_45 = List_1_get_Count_mD738A1974F4AE98C9B6146701996ABD2F0B17962_inline(L_44, List_1_get_Count_mD738A1974F4AE98C9B6146701996ABD2F0B17962_RuntimeMethod_var);
if ((((int32_t)L_43) < ((int32_t)L_45)))
{
goto IL_010a;
}
}
{
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_46 = ___list1;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_47 = __this->____column_7;
NullCheck(L_46);
List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_inline(L_46, L_47, List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_RuntimeMethod_var);
}
IL_010a:
{
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_48 = __this->____relation_8;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_49 = ___list1;
AggregateNode_Bind_mB02C46708D2599FBDE9D9ED72FD6632C25C9BD6E(L_48, L_49, NULL);
return;
}
}
// System.Void System.Data.AggregateNode::Bind(System.Data.DataRelation,System.Collections.Generic.List`1<System.Data.DataColumn>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateNode_Bind_mB02C46708D2599FBDE9D9ED72FD6632C25C9BD6E (DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* ___relation0, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* ___list1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_mC7ECF3C7C9EB3347B47B645B57FD5DBF23394D09_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* V_0 = NULL;
int32_t V_1 = 0;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* V_2 = NULL;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* V_3 = NULL;
{
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_0 = ___relation0;
if (!L_0)
{
goto IL_0055;
}
}
{
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_1 = ___relation0;
NullCheck(L_1);
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_2;
L_2 = DataRelation_get_ChildColumnsReference_m267BF7710ACF045C163C0B9CA37DD85C83F739DD(L_1, NULL);
V_0 = L_2;
V_1 = 0;
goto IL_0026;
}
IL_000e:
{
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_3 = V_0;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_2 = L_6;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_7 = ___list1;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_8 = V_2;
NullCheck(L_7);
bool L_9;
L_9 = List_1_Contains_mC7ECF3C7C9EB3347B47B645B57FD5DBF23394D09(L_7, L_8, List_1_Contains_mC7ECF3C7C9EB3347B47B645B57FD5DBF23394D09_RuntimeMethod_var);
if (L_9)
{
goto IL_0022;
}
}
{
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_10 = ___list1;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_11 = V_2;
NullCheck(L_10);
List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_inline(L_10, L_11, List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_0026:
{
int32_t L_13 = V_1;
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_14 = V_0;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
{
goto IL_000e;
}
}
{
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_15 = ___relation0;
NullCheck(L_15);
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_16;
L_16 = DataRelation_get_ParentColumnsReference_m82521483F7AD557ED56A53403C7123910F90FB73(L_15, NULL);
V_0 = L_16;
V_1 = 0;
goto IL_004f;
}
IL_0037:
{
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_17 = V_0;
int32_t L_18 = V_1;
NullCheck(L_17);
int32_t L_19 = L_18;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_3 = L_20;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_21 = ___list1;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_22 = V_3;
NullCheck(L_21);
bool L_23;
L_23 = List_1_Contains_mC7ECF3C7C9EB3347B47B645B57FD5DBF23394D09(L_21, L_22, List_1_Contains_mC7ECF3C7C9EB3347B47B645B57FD5DBF23394D09_RuntimeMethod_var);
if (L_23)
{
goto IL_004b;
}
}
{
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_24 = ___list1;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_25 = V_3;
NullCheck(L_24);
List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_inline(L_24, L_25, List_1_Add_mD4A4ADE8941B74FC080D470C52672CC13CF326C6_RuntimeMethod_var);
}
IL_004b:
{
int32_t L_26 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_26, 1));
}
IL_004f:
{
int32_t L_27 = V_1;
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_28 = V_0;
NullCheck(L_28);
if ((((int32_t)L_27) < ((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))
{
goto IL_0037;
}
}
IL_0055:
{
return;
}
}
// System.Object System.Data.AggregateNode::Eval()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AggregateNode_Eval_mB3AF037434B4288FC64E670047E1BD04AA9A1E8D (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = VirtualFuncInvoker2< RuntimeObject*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, int32_t >::Invoke(7 /* System.Object System.Data.ExpressionNode::Eval(System.Data.DataRow,System.Data.DataRowVersion) */, __this, (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL, ((int32_t)1536));
return L_0;
}
}
// System.Object System.Data.AggregateNode::Eval(System.Data.DataRow,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AggregateNode_Eval_mC95FABCA2D939D6238A5FD5F7D7DB0A10C9D7FF9 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, int32_t ___version1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* V_0 = NULL;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_2 = NULL;
int32_t V_3 = 0;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____childTable_6;
if (L_0)
{
goto IL_0014;
}
}
{
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
Exception_t* L_2;
L_2 = ExprException_AggregateUnbound_m9B6C3E353D158CBCFB08A73E8D02B0CCC648CB12(L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Eval_mC95FABCA2D939D6238A5FD5F7D7DB0A10C9D7FF9_RuntimeMethod_var)));
}
IL_0014:
{
bool L_3 = __this->____local_3;
if (!L_3)
{
goto IL_0046;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_4 = __this->____childTable_6;
NullCheck(L_4);
DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* L_5;
L_5 = DataTable_get_Rows_m494EC146C4A26B22D334DE155CF3D68CE30CE718_inline(L_4, NULL);
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Data.InternalDataCollectionBase::get_Count() */, L_5);
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_7 = (DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4*)(DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4*)SZArrayNew(DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4_il2cpp_TypeInfo_var, (uint32_t)L_6);
V_0 = L_7;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = __this->____childTable_6;
NullCheck(L_8);
DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* L_9;
L_9 = DataTable_get_Rows_m494EC146C4A26B22D334DE155CF3D68CE30CE718_inline(L_8, NULL);
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_10 = V_0;
NullCheck(L_9);
DataRowCollection_CopyTo_m09F657EB4150DA12C50B1B132478B99AE170E7EA(L_9, L_10, 0, NULL);
goto IL_0071;
}
IL_0046:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_11 = ___row0;
if (L_11)
{
goto IL_004f;
}
}
{
Exception_t* L_12;
L_12 = ExprException_EvalNoContext_m159C5C0BE543E1C12C1EFA094BBDD663935228B2(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Eval_mC95FABCA2D939D6238A5FD5F7D7DB0A10C9D7FF9_RuntimeMethod_var)));
}
IL_004f:
{
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_13 = __this->____relation_8;
if (L_13)
{
goto IL_0063;
}
}
{
String_t* L_14;
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
Exception_t* L_15;
L_15 = ExprException_AggregateUnbound_m9B6C3E353D158CBCFB08A73E8D02B0CCC648CB12(L_14, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Eval_mC95FABCA2D939D6238A5FD5F7D7DB0A10C9D7FF9_RuntimeMethod_var)));
}
IL_0063:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_16 = ___row0;
DataRelation_tCB36A11AB39874353B080F3CD6432C4F9828C656* L_17 = __this->____relation_8;
int32_t L_18 = ___version1;
NullCheck(L_16);
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_19;
L_19 = DataRow_GetChildRows_mA876C52791BC9C7C39831600A87F437865DBA261(L_16, L_17, L_18, NULL);
V_0 = L_19;
}
IL_0071:
{
int32_t L_20 = ___version1;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)1024)))))
{
goto IL_0080;
}
}
{
___version1 = ((int32_t)1536);
}
IL_0080:
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_21 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
NullCheck(L_21);
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_21, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
V_2 = L_21;
V_3 = 0;
goto IL_00e5;
}
IL_008a:
{
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_22 = V_0;
int32_t L_23 = V_3;
NullCheck(L_22);
int32_t L_24 = L_23;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
NullCheck(L_25);
int32_t L_26;
L_26 = DataRow_get_RowState_mC30B0279854248F452C90798F2357EC99EBBA804(L_25, NULL);
if ((!(((uint32_t)L_26) == ((uint32_t)8))))
{
goto IL_00a9;
}
}
{
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_27 = V_0;
int32_t L_28 = V_3;
NullCheck(L_27);
int32_t L_29 = L_28;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
NullCheck(L_30);
int32_t L_31 = L_30->____action_6;
if ((!(((uint32_t)4) == ((uint32_t)L_31))))
{
goto IL_00e1;
}
}
{
___version1 = ((int32_t)256);
goto IL_00bf;
}
IL_00a9:
{
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_32 = V_0;
int32_t L_33 = V_3;
NullCheck(L_32);
int32_t L_34 = L_33;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
NullCheck(L_35);
int32_t L_36 = L_35->____action_6;
if ((!(((uint32_t)4) == ((uint32_t)L_36))))
{
goto IL_00bf;
}
}
{
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_37 = V_0;
int32_t L_38 = V_3;
NullCheck(L_37);
int32_t L_39 = L_38;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
NullCheck(L_40);
int32_t L_41;
L_41 = DataRow_get_RowState_mC30B0279854248F452C90798F2357EC99EBBA804(L_40, NULL);
if ((((int32_t)L_41) == ((int32_t)4)))
{
goto IL_00e1;
}
}
IL_00bf:
{
int32_t L_42 = ___version1;
if ((!(((uint32_t)L_42) == ((uint32_t)((int32_t)256)))))
{
goto IL_00d2;
}
}
{
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_43 = V_0;
int32_t L_44 = V_3;
NullCheck(L_43);
int32_t L_45 = L_44;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_46 = (L_43)->GetAt(static_cast<il2cpp_array_size_t>(L_45));
NullCheck(L_46);
int32_t L_47 = L_46->____oldRecord_2;
if ((((int32_t)L_47) == ((int32_t)(-1))))
{
goto IL_00e1;
}
}
IL_00d2:
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_48 = V_2;
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_49 = V_0;
int32_t L_50 = V_3;
NullCheck(L_49);
int32_t L_51 = L_50;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_52 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
int32_t L_53 = ___version1;
NullCheck(L_52);
int32_t L_54;
L_54 = DataRow_GetRecordFromVersion_mDE75DD659D7DFF8FF190F2DD1B8C5692F2DFCFE6(L_52, L_53, NULL);
NullCheck(L_48);
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_48, L_54, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
}
IL_00e1:
{
int32_t L_55 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_55, 1));
}
IL_00e5:
{
int32_t L_56 = V_3;
DataRowU5BU5D_t2A0D4483B27757FE7345A2E7FE5727C7F77DE5D4* L_57 = V_0;
NullCheck(L_57);
if ((((int32_t)L_56) < ((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length)))))
{
goto IL_008a;
}
}
{
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_58 = V_2;
NullCheck(L_58);
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_59;
L_59 = List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA(L_58, List_1_ToArray_m65479FB75A5FE539EA1A0D6681172717D23CEAAA_RuntimeMethod_var);
V_1 = L_59;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_60 = __this->____column_7;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_61 = V_1;
int32_t L_62 = __this->____type_1;
NullCheck(L_60);
RuntimeObject* L_63;
L_63 = DataColumn_GetAggregateValue_m2CA7CEAA95170D432903603FF1BA208A3AE1576C(L_60, L_61, L_62, NULL);
return L_63;
}
}
// System.Object System.Data.AggregateNode::Eval(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AggregateNode_Eval_mB6C552DF55CD82720509EFDCD99437D8860421FF (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___records0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____childTable_6;
if (L_0)
{
goto IL_0014;
}
}
{
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
Exception_t* L_2;
L_2 = ExprException_AggregateUnbound_m9B6C3E353D158CBCFB08A73E8D02B0CCC648CB12(L_1, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Eval_mB6C552DF55CD82720509EFDCD99437D8860421FF_RuntimeMethod_var)));
}
IL_0014:
{
bool L_3 = __this->____local_3;
if (L_3)
{
goto IL_0028;
}
}
{
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
Exception_t* L_5;
L_5 = ExprException_ComputeNotAggregate_m5B230D5B31D8BFACD541E56A0CEDF4E63E1A758D(L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateNode_Eval_mB6C552DF55CD82720509EFDCD99437D8860421FF_RuntimeMethod_var)));
}
IL_0028:
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_6 = __this->____column_7;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = ___records0;
int32_t L_8 = __this->____type_1;
NullCheck(L_6);
RuntimeObject* L_9;
L_9 = DataColumn_GetAggregateValue_m2CA7CEAA95170D432903603FF1BA208A3AE1576C(L_6, L_7, L_8, NULL);
return L_9;
}
}
// System.Boolean System.Data.AggregateNode::IsConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AggregateNode_IsConstant_m1DB5EF615C268483F7EE97148891A922A9C71D78 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Data.AggregateNode::IsTableConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AggregateNode_IsTableConstant_m4F51564D894B42C2186CB0BA12CFC0A2B548A34E (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____local_3;
return L_0;
}
}
// System.Boolean System.Data.AggregateNode::HasLocalAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AggregateNode_HasLocalAggregate_m3015C406B214017CF499743BF5F553D0E62AB26F (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____local_3;
return L_0;
}
}
// System.Boolean System.Data.AggregateNode::HasRemoteAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AggregateNode_HasRemoteAggregate_mF4609981E92A33A6B1147C916DE2D1A13E798EC5 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____local_3;
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Data.AggregateNode::DependsOn(System.Data.DataColumn)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AggregateNode_DependsOn_m762CF85765FEB1DFDBEB4BF3B44ABDAFAAAC2E93 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___column0, const RuntimeMethod* method)
{
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_0 = __this->____column_7;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_1 = ___column0;
if ((!(((RuntimeObject*)(DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*)L_0) == ((RuntimeObject*)(DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66*)L_1))))
{
goto IL_000b;
}
}
{
return (bool)1;
}
IL_000b:
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_2 = __this->____column_7;
NullCheck(L_2);
bool L_3;
L_3 = DataColumn_get_Computed_mEBBC8746B8F8EE6AF8EC3FAE7DD4E53A6F10B63F(L_2, NULL);
if (!L_3)
{
goto IL_002a;
}
}
{
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_4 = __this->____column_7;
NullCheck(L_4);
DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* L_5;
L_5 = DataColumn_get_DataExpression_m4FA8DB2F5119D7850DACC69EAA5852ED4B9D952F_inline(L_4, NULL);
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_6 = ___column0;
NullCheck(L_5);
bool L_7;
L_7 = DataExpression_DependsOn_m6CD29A2494D572F8247B196CD4B0399B1CD71659(L_5, L_6, NULL);
return L_7;
}
IL_002a:
{
return (bool)0;
}
}
// System.Data.ExpressionNode System.Data.AggregateNode::Optimize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* AggregateNode_Optimize_mB78182B51706C3C009899D5CCB16DA1A4F725A83 (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
#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.Data.BinaryNode::.ctor(System.Data.DataTable,System.Int32,System.Data.ExpressionNode,System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryNode__ctor_m7514FA08A8C7CD203362FCAB2FE53C855B9BDFC7 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___op1, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___left2, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___right3, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
ExpressionNode__ctor_m283F3264481483CC47247AF2E8E012F055616698(__this, L_0, NULL);
int32_t L_1 = ___op1;
__this->____op_1 = L_1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = ___left2;
__this->____left_2 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____left_2), (void*)L_2);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_3 = ___right3;
__this->____right_3 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->____right_3), (void*)L_3);
return;
}
}
// System.Void System.Data.BinaryNode::Bind(System.Data.DataTable,System.Collections.Generic.List`1<System.Data.DataColumn>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryNode_Bind_mE54DB39C51E48D4769677777AF6FDE6E361833CF (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* ___list1, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
ExpressionNode_BindTable_mE73D14C3A5AD6BBEAECD63E90C3828CB21DC71DC_inline(__this, L_0, NULL);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = __this->____left_2;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_3 = ___list1;
NullCheck(L_1);
VirtualActionInvoker2< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* >::Invoke(5 /* System.Void System.Data.ExpressionNode::Bind(System.Data.DataTable,System.Collections.Generic.List`1<System.Data.DataColumn>) */, L_1, L_2, L_3);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_4 = __this->____right_3;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_5 = ___table0;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_6 = ___list1;
NullCheck(L_4);
VirtualActionInvoker2< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* >::Invoke(5 /* System.Void System.Data.ExpressionNode::Bind(System.Data.DataTable,System.Collections.Generic.List`1<System.Data.DataColumn>) */, L_4, L_5, L_6);
return;
}
}
// System.Object System.Data.BinaryNode::Eval()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryNode_Eval_m3F5FDEDABB4125D1025F88A9A0F2F3205EB96680 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = VirtualFuncInvoker2< RuntimeObject*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, int32_t >::Invoke(7 /* System.Object System.Data.ExpressionNode::Eval(System.Data.DataRow,System.Data.DataRowVersion) */, __this, (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL, ((int32_t)1536));
return L_0;
}
}
// System.Object System.Data.BinaryNode::Eval(System.Data.DataRow,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryNode_Eval_mBE8AA55FA6640571786107FDE9AB603AFC19331D (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, int32_t ___version1, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____op_1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = __this->____left_2;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____right_3;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_3 = ___row0;
int32_t L_4 = ___version1;
RuntimeObject* L_5;
L_5 = BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C(__this, L_0, L_1, L_2, L_3, L_4, (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)NULL, NULL);
return L_5;
}
}
// System.Object System.Data.BinaryNode::Eval(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryNode_Eval_m6AEF596C031D4AE6F0C172BEA31AFD1B2B974F71 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___recordNos0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____op_1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = __this->____left_2;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____right_3;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = ___recordNos0;
RuntimeObject* L_4;
L_4 = BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C(__this, L_0, L_1, L_2, (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL, ((int32_t)1536), L_3, NULL);
return L_4;
}
}
// System.Boolean System.Data.BinaryNode::IsConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_IsConstant_m4E11B9464655DCE828A6605E5D058D95113D8770 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____left_2;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Data.ExpressionNode::IsConstant() */, L_0);
if (!L_1)
{
goto IL_0019;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____right_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Data.ExpressionNode::IsConstant() */, L_2);
return L_3;
}
IL_0019:
{
return (bool)0;
}
}
// System.Boolean System.Data.BinaryNode::IsTableConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_IsTableConstant_mC7C7C2140CB5A54103C16B75362E8978A0B1FEBD (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____left_2;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.Data.ExpressionNode::IsTableConstant() */, L_0);
if (!L_1)
{
goto IL_0019;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____right_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.Data.ExpressionNode::IsTableConstant() */, L_2);
return L_3;
}
IL_0019:
{
return (bool)0;
}
}
// System.Boolean System.Data.BinaryNode::HasLocalAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_HasLocalAggregate_mF57B19CFD48AC2704D4433719B4E8FDCFDC04205 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____left_2;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Data.ExpressionNode::HasLocalAggregate() */, L_0);
if (L_1)
{
goto IL_0019;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____right_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Data.ExpressionNode::HasLocalAggregate() */, L_2);
return L_3;
}
IL_0019:
{
return (bool)1;
}
}
// System.Boolean System.Data.BinaryNode::HasRemoteAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_HasRemoteAggregate_m6B11D1FB18F5E6CB3B413799F52EDB41C12775E6 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____left_2;
NullCheck(L_0);
bool L_1;
L_1 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Data.ExpressionNode::HasRemoteAggregate() */, L_0);
if (L_1)
{
goto IL_0019;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____right_3;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Data.ExpressionNode::HasRemoteAggregate() */, L_2);
return L_3;
}
IL_0019:
{
return (bool)1;
}
}
// System.Boolean System.Data.BinaryNode::DependsOn(System.Data.DataColumn)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_DependsOn_mD1E1E1F3FA9B6787F1200144C0A111C5379D3231 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___column0, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____left_2;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_1 = ___column0;
NullCheck(L_0);
bool L_2;
L_2 = VirtualFuncInvoker1< bool, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* >::Invoke(14 /* System.Boolean System.Data.ExpressionNode::DependsOn(System.Data.DataColumn) */, L_0, L_1);
if (!L_2)
{
goto IL_0010;
}
}
{
return (bool)1;
}
IL_0010:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_3 = __this->____right_3;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_4 = ___column0;
NullCheck(L_3);
bool L_5;
L_5 = VirtualFuncInvoker1< bool, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* >::Invoke(14 /* System.Boolean System.Data.ExpressionNode::DependsOn(System.Data.DataColumn) */, L_3, L_4);
return L_5;
}
}
// System.Data.ExpressionNode System.Data.BinaryNode::Optimize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* BinaryNode_Optimize_m77C3A8566B1FBBD0E4A18B93B38A89DBA7B807B1 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____left_2;
NullCheck(L_0);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1;
L_1 = VirtualFuncInvoker0< ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* >::Invoke(13 /* System.Data.ExpressionNode System.Data.ExpressionNode::Optimize() */, L_0);
__this->____left_2 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____left_2), (void*)L_1);
int32_t L_2 = __this->____op_1;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)13)))))
{
goto IL_0084;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_3 = __this->____right_3;
if (!((UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE*)IsInstSealed((RuntimeObject*)L_3, UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var)))
{
goto IL_0057;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_4 = __this->____right_3;
V_0 = ((UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE*)CastclassSealed((RuntimeObject*)L_4, UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var));
UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE* L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = L_5->____op_1;
if ((((int32_t)L_6) == ((int32_t)3)))
{
goto IL_0043;
}
}
{
Exception_t* L_7;
L_7 = ExprException_InvalidIsSyntax_m0E4911FA30A79662957C5B8EF2D697323B663DB7(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_Optimize_m77C3A8566B1FBBD0E4A18B93B38A89DBA7B807B1_RuntimeMethod_var)));
}
IL_0043:
{
__this->____op_1 = ((int32_t)39);
UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE* L_8 = V_0;
NullCheck(L_8);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_9 = L_8->____right_2;
__this->____right_3 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->____right_3), (void*)L_9);
}
IL_0057:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_10 = __this->____right_3;
if (!((ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8*)IsInstSealed((RuntimeObject*)L_10, ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var)))
{
goto IL_007e;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_11 = __this->____right_3;
NullCheck(((ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8*)CastclassSealed((RuntimeObject*)L_11, ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var)));
int32_t L_12 = ((ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8*)CastclassSealed((RuntimeObject*)L_11, ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var))->____op_1;
if ((((int32_t)L_12) == ((int32_t)((int32_t)32))))
{
goto IL_0095;
}
}
{
Exception_t* L_13;
L_13 = ExprException_InvalidIsSyntax_m0E4911FA30A79662957C5B8EF2D697323B663DB7(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_Optimize_m77C3A8566B1FBBD0E4A18B93B38A89DBA7B807B1_RuntimeMethod_var)));
}
IL_007e:
{
Exception_t* L_14;
L_14 = ExprException_InvalidIsSyntax_m0E4911FA30A79662957C5B8EF2D697323B663DB7(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_Optimize_m77C3A8566B1FBBD0E4A18B93B38A89DBA7B807B1_RuntimeMethod_var)));
}
IL_0084:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_15 = __this->____right_3;
NullCheck(L_15);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_16;
L_16 = VirtualFuncInvoker0< ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* >::Invoke(13 /* System.Data.ExpressionNode System.Data.ExpressionNode::Optimize() */, L_15);
__this->____right_3 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->____right_3), (void*)L_16);
}
IL_0095:
{
bool L_17;
L_17 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Data.ExpressionNode::IsConstant() */, __this);
if (!L_17)
{
goto IL_00e3;
}
}
{
RuntimeObject* L_18;
L_18 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.Data.ExpressionNode::Eval() */, __this);
V_1 = L_18;
RuntimeObject* L_19 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_20 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_19) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_20))))
{
goto IL_00b4;
}
}
{
ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8* L_21 = (ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8*)il2cpp_codegen_object_new(ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var);
NullCheck(L_21);
ZeroOpNode__ctor_m8C49A46AA06B141B47B0C18B78C226746F190F8A(L_21, ((int32_t)32), NULL);
return L_21;
}
IL_00b4:
{
RuntimeObject* L_22 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_22, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_00d4;
}
}
{
RuntimeObject* L_23 = V_1;
if (!((*(bool*)((bool*)(bool*)UnBox(L_23, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))))
{
goto IL_00cc;
}
}
{
ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8* L_24 = (ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8*)il2cpp_codegen_object_new(ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var);
NullCheck(L_24);
ZeroOpNode__ctor_m8C49A46AA06B141B47B0C18B78C226746F190F8A(L_24, ((int32_t)33), NULL);
return L_24;
}
IL_00cc:
{
ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8* L_25 = (ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8*)il2cpp_codegen_object_new(ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var);
NullCheck(L_25);
ZeroOpNode__ctor_m8C49A46AA06B141B47B0C18B78C226746F190F8A(L_25, ((int32_t)34), NULL);
return L_25;
}
IL_00d4:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_26;
L_26 = ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline(__this, NULL);
RuntimeObject* L_27 = V_1;
ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* L_28 = (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)il2cpp_codegen_object_new(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
NullCheck(L_28);
ConstNode__ctor_m68472F28A01DAD79B5E27F449076A6B72365F7F5(L_28, L_26, 6, L_27, (bool)0, NULL);
return L_28;
}
IL_00e3:
{
return __this;
}
}
// System.Void System.Data.BinaryNode::SetTypeMismatchError(System.Int32,System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___op0, Type_t* ___left1, Type_t* ___right2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___op0;
Type_t* L_1 = ___left1;
Type_t* L_2 = ___right2;
Exception_t* L_3;
L_3 = ExprException_TypeMismatchInBinop_m08F80656E1BB4BDCB282D48CC12E6403CAE5AA07(L_0, L_1, L_2, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3_RuntimeMethod_var)));
}
}
// System.Object System.Data.BinaryNode::Eval(System.Data.ExpressionNode,System.Data.DataRow,System.Data.DataRowVersion,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002 (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___expr0, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row1, int32_t ___version2, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___recordNos3, const RuntimeMethod* method)
{
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___recordNos3;
if (L_0)
{
goto IL_000c;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = ___expr0;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_2 = ___row1;
int32_t L_3 = ___version2;
NullCheck(L_1);
RuntimeObject* L_4;
L_4 = VirtualFuncInvoker2< RuntimeObject*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, int32_t >::Invoke(7 /* System.Object System.Data.ExpressionNode::Eval(System.Data.DataRow,System.Data.DataRowVersion) */, L_1, L_2, L_3);
return L_4;
}
IL_000c:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_5 = ___expr0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = ___recordNos3;
NullCheck(L_5);
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker1< RuntimeObject*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* >::Invoke(8 /* System.Object System.Data.ExpressionNode::Eval(System.Int32[]) */, L_5, L_6);
return L_7;
}
}
// System.Int32 System.Data.BinaryNode::BinaryCompare(System.Object,System.Object,System.Data.Common.StorageType,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, RuntimeObject* ___vLeft0, RuntimeObject* ___vRight1, int32_t ___resultType2, int32_t ___op3, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___vLeft0;
RuntimeObject* L_1 = ___vRight1;
int32_t L_2 = ___resultType2;
int32_t L_3 = ___op3;
int32_t L_4;
L_4 = BinaryNode_BinaryCompare_mDC2D0329D35F766A3B6B920B969F4562B0F5F612(__this, L_0, L_1, L_2, L_3, (CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57*)NULL, NULL);
return L_4;
}
}
// System.Int32 System.Data.BinaryNode::BinaryCompare(System.Object,System.Object,System.Data.Common.StorageType,System.Int32,System.Globalization.CompareInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_BinaryCompare_mDC2D0329D35F766A3B6B920B969F4562B0F5F612 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, RuntimeObject* ___vLeft0, RuntimeObject* ___vRight1, int32_t ___resultType2, int32_t ___op3, CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Guid_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
double V_3 = 0.0;
float V_4 = 0.0f;
Guid_t V_5;
memset((&V_5), 0, sizeof(V_5));
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 V_6;
memset((&V_6), 0, sizeof(V_6));
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 V_7;
memset((&V_7), 0, sizeof(V_7));
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 V_8;
memset((&V_8), 0, sizeof(V_8));
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 V_9;
memset((&V_9), 0, sizeof(V_9));
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 V_10;
memset((&V_10), 0, sizeof(V_10));
SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7 V_11;
memset((&V_11), 0, sizeof(V_11));
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 V_12;
memset((&V_12), 0, sizeof(V_12));
SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347 V_13;
memset((&V_13), 0, sizeof(V_13));
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 V_14;
memset((&V_14), 0, sizeof(V_14));
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB V_15;
memset((&V_15), 0, sizeof(V_15));
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
V_0 = 0;
}
try
{// begin try (depth: 1)
{
int32_t L_0 = ___resultType2;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = DataStorage_IsSqlType_m7FA180A7030104A7D160A660F70CD1F028181B7A(L_0, NULL);
if (L_1)
{
goto IL_01eb_1;
}
}
{
int32_t L_2 = ___resultType2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 3)))
{
case 0:
{
goto IL_01aa_1;
}
case 1:
{
goto IL_00b7_1;
}
case 2:
{
goto IL_006e_1;
}
case 3:
{
goto IL_006e_1;
}
case 4:
{
goto IL_006e_1;
}
case 5:
{
goto IL_006e_1;
}
case 6:
{
goto IL_006e_1;
}
case 7:
{
goto IL_0094_1;
}
case 8:
{
goto IL_0094_1;
}
case 9:
{
goto IL_0094_1;
}
case 10:
{
goto IL_0103_1;
}
case 11:
{
goto IL_00dd_1;
}
case 12:
{
goto IL_0094_1;
}
case 13:
{
goto IL_012a_1;
}
case 14:
{
goto IL_0442_1;
}
case 15:
{
goto IL_0164_1;
}
case 16:
{
goto IL_018f_1;
}
case 17:
{
goto IL_0442_1;
}
case 18:
{
goto IL_0442_1;
}
case 19:
{
goto IL_0442_1;
}
case 20:
{
goto IL_014d_1;
}
}
}
{
goto IL_0442_1;
}
IL_006e_1:
{
RuntimeObject* L_3 = ___vLeft0;
RuntimeObject* L_4;
L_4 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_5;
L_5 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_3, L_4, NULL);
V_1 = L_5;
RuntimeObject* L_6 = ___vRight1;
RuntimeObject* L_7;
L_7 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int32_t L_8;
L_8 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_6, L_7, NULL);
int32_t L_9;
L_9 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_1), L_8, NULL);
V_1 = L_9;
goto IL_0482;
}
IL_0094_1:
{
RuntimeObject* L_10 = ___vLeft0;
RuntimeObject* L_11;
L_11 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_12;
L_12 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_10, L_11, NULL);
RuntimeObject* L_13 = ___vRight1;
RuntimeObject* L_14;
L_14 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_15;
L_15 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_13, L_14, NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
int32_t L_16;
L_16 = Decimal_Compare_m89C67966A7B02A387B3A2E97A91D8BFA7739154A(L_12, L_15, NULL);
V_1 = L_16;
goto IL_0482;
}
IL_00b7_1:
{
RuntimeObject* L_17 = ___vLeft0;
RuntimeObject* L_18;
L_18 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_19;
L_19 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_17, L_18, NULL);
V_2 = L_19;
RuntimeObject* L_20 = ___vRight1;
RuntimeObject* L_21;
L_21 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int32_t L_22;
L_22 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_20, L_21, NULL);
int32_t L_23;
L_23 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_2), L_22, NULL);
V_1 = L_23;
goto IL_0482;
}
IL_00dd_1:
{
RuntimeObject* L_24 = ___vLeft0;
RuntimeObject* L_25;
L_25 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_26;
L_26 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_24, L_25, NULL);
V_3 = L_26;
RuntimeObject* L_27 = ___vRight1;
RuntimeObject* L_28;
L_28 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
double L_29;
L_29 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_27, L_28, NULL);
int32_t L_30;
L_30 = Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC((&V_3), L_29, NULL);
V_1 = L_30;
goto IL_0482;
}
IL_0103_1:
{
RuntimeObject* L_31 = ___vLeft0;
RuntimeObject* L_32;
L_32 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_33;
L_33 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_31, L_32, NULL);
V_4 = L_33;
RuntimeObject* L_34 = ___vRight1;
RuntimeObject* L_35;
L_35 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
float L_36;
L_36 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_34, L_35, NULL);
int32_t L_37;
L_37 = Single_CompareTo_m06F7868162EB392D3E99103D1A0BD27463C9E66F((&V_4), L_36, NULL);
V_1 = L_37;
goto IL_0482;
}
IL_012a_1:
{
RuntimeObject* L_38 = ___vLeft0;
RuntimeObject* L_39;
L_39 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40;
L_40 = Convert_ToDateTime_m61905AF8CBAC88A4891F90E763A1EFAE8B3EA74E(L_38, L_39, NULL);
RuntimeObject* L_41 = ___vRight1;
RuntimeObject* L_42;
L_42 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43;
L_43 = Convert_ToDateTime_m61905AF8CBAC88A4891F90E763A1EFAE8B3EA74E(L_41, L_42, NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
int32_t L_44;
L_44 = DateTime_Compare_mFE3B56B438BCB6AB84E3A9042F2D4970AB47F10A(L_40, L_43, NULL);
V_1 = L_44;
goto IL_0482;
}
IL_014d_1:
{
RuntimeObject* L_45 = ___vLeft0;
RuntimeObject* L_46 = ___vRight1;
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
int32_t L_47;
L_47 = DateTimeOffset_Compare_m2AC1068CD8EC333D682FCA7E11A32A0D0658C2EF(((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_45, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var)))), ((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_46, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var)))), NULL);
V_1 = L_47;
goto IL_0482;
}
IL_0164_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_48;
L_48 = ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline(__this, NULL);
RuntimeObject* L_49 = ___vLeft0;
RuntimeObject* L_50;
L_50 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
String_t* L_51;
L_51 = Convert_ToString_mCC5DC13CDF7E338DB15699432F28477C7DF52DE1(L_49, L_50, NULL);
RuntimeObject* L_52 = ___vRight1;
RuntimeObject* L_53;
L_53 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
String_t* L_54;
L_54 = Convert_ToString_mCC5DC13CDF7E338DB15699432F28477C7DF52DE1(L_52, L_53, NULL);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_55 = ___comparer4;
NullCheck(L_48);
int32_t L_56;
L_56 = DataTable_Compare_m3CB295A5FD7745849E5BC332C4B21152A05E67E3(L_48, L_51, L_54, L_55, NULL);
V_1 = L_56;
goto IL_0482;
}
IL_018f_1:
{
RuntimeObject* L_57 = ___vLeft0;
V_5 = ((*(Guid_t*)((Guid_t*)(Guid_t*)UnBox(L_57, Guid_t_il2cpp_TypeInfo_var))));
RuntimeObject* L_58 = ___vRight1;
int32_t L_59;
L_59 = Guid_CompareTo_mC22A00A14BBCCBF55F303C89A567FCA43925B586((&V_5), ((*(Guid_t*)((Guid_t*)(Guid_t*)UnBox(L_58, Guid_t_il2cpp_TypeInfo_var)))), NULL);
V_1 = L_59;
goto IL_0482;
}
IL_01aa_1:
{
int32_t L_60 = ___op3;
if ((((int32_t)L_60) == ((int32_t)7)))
{
goto IL_01b8_1;
}
}
{
int32_t L_61 = ___op3;
if ((!(((uint32_t)L_61) == ((uint32_t)((int32_t)12)))))
{
goto IL_0442_1;
}
}
IL_01b8_1:
{
RuntimeObject* L_62 = ___vLeft0;
bool L_63;
L_63 = DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544(L_62, NULL);
bool L_64 = L_63;
RuntimeObject* L_65 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_64);
RuntimeObject* L_66;
L_66 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_67;
L_67 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_65, L_66, NULL);
RuntimeObject* L_68 = ___vRight1;
bool L_69;
L_69 = DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544(L_68, NULL);
bool L_70 = L_69;
RuntimeObject* L_71 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_70);
RuntimeObject* L_72;
L_72 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int32_t L_73;
L_73 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_71, L_72, NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract(L_67, L_73));
goto IL_0482;
}
IL_01eb_1:
{
int32_t L_74 = ___resultType2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_74, 5)))
{
case 0:
{
goto IL_0288_1;
}
case 1:
{
goto IL_0288_1;
}
case 2:
{
goto IL_0288_1;
}
case 3:
{
goto IL_0288_1;
}
case 4:
{
goto IL_0288_1;
}
case 5:
{
goto IL_02a3_1;
}
case 6:
{
goto IL_02a3_1;
}
case 7:
{
goto IL_02be_1;
}
case 8:
{
goto IL_0442_1;
}
case 9:
{
goto IL_0442_1;
}
case 10:
{
goto IL_0442_1;
}
case 11:
{
goto IL_0442_1;
}
case 12:
{
goto IL_0442_1;
}
case 13:
{
goto IL_0442_1;
}
case 14:
{
goto IL_0442_1;
}
case 15:
{
goto IL_0442_1;
}
case 16:
{
goto IL_0442_1;
}
case 17:
{
goto IL_0442_1;
}
case 18:
{
goto IL_0442_1;
}
case 19:
{
goto IL_0442_1;
}
case 20:
{
goto IL_0442_1;
}
case 21:
{
goto IL_03fa_1;
}
case 22:
{
goto IL_0342_1;
}
case 23:
{
goto IL_0288_1;
}
case 24:
{
goto IL_0442_1;
}
case 25:
{
goto IL_0442_1;
}
case 26:
{
goto IL_0412_1;
}
case 27:
{
goto IL_02be_1;
}
case 28:
{
goto IL_02d9_1;
}
case 29:
{
goto IL_032c_1;
}
case 30:
{
goto IL_0288_1;
}
case 31:
{
goto IL_0288_1;
}
case 32:
{
goto IL_02a3_1;
}
case 33:
{
goto IL_042a_1;
}
case 34:
{
goto IL_02f4_1;
}
case 35:
{
goto IL_030f_1;
}
}
}
{
goto IL_0442_1;
}
IL_0288_1:
{
RuntimeObject* L_75 = ___vLeft0;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_76;
L_76 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_75, NULL);
V_6 = L_76;
RuntimeObject* L_77 = ___vRight1;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_78;
L_78 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_77, NULL);
int32_t L_79;
L_79 = SqlInt32_CompareTo_m6EBE0A1AACF4E5C44E76D91D6FD6A5FC655C164B((&V_6), L_78, NULL);
V_1 = L_79;
goto IL_0482;
}
IL_02a3_1:
{
RuntimeObject* L_80 = ___vLeft0;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_81;
L_81 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_80, NULL);
V_7 = L_81;
RuntimeObject* L_82 = ___vRight1;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_83;
L_83 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_82, NULL);
int32_t L_84;
L_84 = SqlInt64_CompareTo_m73C81296C591620BBCDD8A084418A0539EF68FEC((&V_7), L_83, NULL);
V_1 = L_84;
goto IL_0482;
}
IL_02be_1:
{
RuntimeObject* L_85 = ___vLeft0;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_86;
L_86 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_85, NULL);
V_8 = L_86;
RuntimeObject* L_87 = ___vRight1;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_88;
L_88 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_87, NULL);
int32_t L_89;
L_89 = SqlDecimal_CompareTo_m0100ACFA5FBF6023915A5ADC06B9C15BB9F7C4F2((&V_8), L_88, NULL);
V_1 = L_89;
goto IL_0482;
}
IL_02d9_1:
{
RuntimeObject* L_90 = ___vLeft0;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_91;
L_91 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_90, NULL);
V_9 = L_91;
RuntimeObject* L_92 = ___vRight1;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_93;
L_93 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_92, NULL);
int32_t L_94;
L_94 = SqlDouble_CompareTo_mE79F43FB35FAC5959E985E45CDB0122A91CAA554((&V_9), L_93, NULL);
V_1 = L_94;
goto IL_0482;
}
IL_02f4_1:
{
RuntimeObject* L_95 = ___vLeft0;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_96;
L_96 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_95, NULL);
V_10 = L_96;
RuntimeObject* L_97 = ___vRight1;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_98;
L_98 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_97, NULL);
int32_t L_99;
L_99 = SqlSingle_CompareTo_m167AE18CF6ACCFA18A71BA742D642ECC7463D22A((&V_10), L_98, NULL);
V_1 = L_99;
goto IL_0482;
}
IL_030f_1:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_100;
L_100 = ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline(__this, NULL);
RuntimeObject* L_101 = ___vLeft0;
NullCheck(L_101);
String_t* L_102;
L_102 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_101);
RuntimeObject* L_103 = ___vRight1;
NullCheck(L_103);
String_t* L_104;
L_104 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_103);
NullCheck(L_100);
int32_t L_105;
L_105 = DataTable_Compare_mD425943926EF05816C7B8F5BB02F4234C0AB72C5(L_100, L_102, L_104, NULL);
V_1 = L_105;
goto IL_0482;
}
IL_032c_1:
{
RuntimeObject* L_106 = ___vLeft0;
V_11 = ((*(SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7*)((SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7*)(SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7*)UnBox(L_106, SqlGuid_t93C33E370E5D3A344A15F9EFD9A2D4177576DED7_il2cpp_TypeInfo_var))));
RuntimeObject* L_107 = ___vRight1;
int32_t L_108;
L_108 = SqlGuid_CompareTo_m55E6808098A106DD6A3C9C056DD74C2BBAC9B990((&V_11), L_107, NULL);
V_1 = L_108;
goto IL_0482;
}
IL_0342_1:
{
int32_t L_109 = ___op3;
if ((((int32_t)L_109) == ((int32_t)7)))
{
goto IL_0350_1;
}
}
{
int32_t L_110 = ___op3;
if ((!(((uint32_t)L_110) == ((uint32_t)((int32_t)12)))))
{
goto IL_0442_1;
}
}
IL_0350_1:
{
V_0 = 1;
RuntimeObject* L_111 = ___vLeft0;
NullCheck(L_111);
Type_t* L_112;
L_112 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_111, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_114;
L_114 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_113, NULL);
bool L_115;
L_115 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_112, L_114, NULL);
if (!L_115)
{
goto IL_0397_1;
}
}
{
RuntimeObject* L_116 = ___vRight1;
NullCheck(L_116);
Type_t* L_117;
L_117 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_116, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_118 = { reinterpret_cast<intptr_t> (SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_119;
L_119 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_118, NULL);
bool L_120;
L_120 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_117, L_119, NULL);
if (L_120)
{
goto IL_03df_1;
}
}
{
RuntimeObject* L_121 = ___vRight1;
NullCheck(L_121);
Type_t* L_122;
L_122 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_121, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_123 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_124;
L_124 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_123, NULL);
bool L_125;
L_125 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_122, L_124, NULL);
if (L_125)
{
goto IL_03df_1;
}
}
IL_0397_1:
{
RuntimeObject* L_126 = ___vRight1;
NullCheck(L_126);
Type_t* L_127;
L_127 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_126, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_128 = { reinterpret_cast<intptr_t> (SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_129;
L_129 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_128, NULL);
bool L_130;
L_130 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_127, L_129, NULL);
if (!L_130)
{
goto IL_0442_1;
}
}
{
RuntimeObject* L_131 = ___vLeft0;
NullCheck(L_131);
Type_t* L_132;
L_132 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_131, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_133 = { reinterpret_cast<intptr_t> (SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_134;
L_134 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_133, NULL);
bool L_135;
L_135 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_132, L_134, NULL);
if (L_135)
{
goto IL_03df_1;
}
}
{
RuntimeObject* L_136 = ___vLeft0;
NullCheck(L_136);
Type_t* L_137;
L_137 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_136, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_138 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_139;
L_139 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_138, NULL);
bool L_140;
L_140 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_137, L_139, NULL);
if (!L_140)
{
goto IL_0442_1;
}
}
IL_03df_1:
{
RuntimeObject* L_141 = ___vLeft0;
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 L_142;
L_142 = SqlConvert_ConvertToSqlBoolean_m45F037118335EE0E9145C6EE0AD1BD3432C187CD(L_141, NULL);
V_12 = L_142;
RuntimeObject* L_143 = ___vRight1;
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 L_144;
L_144 = SqlConvert_ConvertToSqlBoolean_m45F037118335EE0E9145C6EE0AD1BD3432C187CD(L_143, NULL);
int32_t L_145;
L_145 = SqlBoolean_CompareTo_mAB4868F894724D6FFEA7678910365C1797973FB5((&V_12), L_144, NULL);
V_1 = L_145;
goto IL_0482;
}
IL_03fa_1:
{
RuntimeObject* L_146 = ___vLeft0;
SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347 L_147;
L_147 = SqlConvert_ConvertToSqlBinary_m347444E186CF2ACCB7452ECC8FD4D950F5CE397B(L_146, NULL);
V_13 = L_147;
RuntimeObject* L_148 = ___vRight1;
SqlBinary_tEFB13C14B44E4388798A2F7DB48438E16DE4E347 L_149;
L_149 = SqlConvert_ConvertToSqlBinary_m347444E186CF2ACCB7452ECC8FD4D950F5CE397B(L_148, NULL);
int32_t L_150;
L_150 = SqlBinary_CompareTo_m15A26CE886F9544972BBA5DA713A2E321C12335A((&V_13), L_149, NULL);
V_1 = L_150;
goto IL_0482;
}
IL_0412_1:
{
RuntimeObject* L_151 = ___vLeft0;
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_152;
L_152 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_151, NULL);
V_14 = L_152;
RuntimeObject* L_153 = ___vRight1;
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_154;
L_154 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_153, NULL);
int32_t L_155;
L_155 = SqlDateTime_CompareTo_mFC30CA07C33E98986C7B6B91D2C7F02F644F28A3((&V_14), L_154, NULL);
V_1 = L_155;
goto IL_0482;
}
IL_042a_1:
{
RuntimeObject* L_156 = ___vLeft0;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_157;
L_157 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_156, NULL);
V_15 = L_157;
RuntimeObject* L_158 = ___vRight1;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_159;
L_159 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_158, NULL);
int32_t L_160;
L_160 = SqlMoney_CompareTo_m8CD6963D21781A101DF52892EEC1C5F2D6F0A708((&V_15), L_159, NULL);
V_1 = L_160;
goto IL_0482;
}
IL_0442_1:
{
goto IL_046c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0444;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_044c;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0454;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_045c;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EvaluateException_t78BD6A3F4B827B5CB5688268A536B3C304A6BC2C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0464;
}
throw e;
}
CATCH_0444:
{// begin catch(System.ArgumentException)
Exception_t* L_161;
L_161 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_046c;
}// end catch (depth: 1)
CATCH_044c:
{// begin catch(System.FormatException)
Exception_t* L_162;
L_162 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_046c;
}// end catch (depth: 1)
CATCH_0454:
{// begin catch(System.InvalidCastException)
Exception_t* L_163;
L_163 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_046c;
}// end catch (depth: 1)
CATCH_045c:
{// begin catch(System.OverflowException)
Exception_t* L_164;
L_164 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_046c;
}// end catch (depth: 1)
CATCH_0464:
{// begin catch(System.Data.EvaluateException)
Exception_t* L_165;
L_165 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((EvaluateException_t78BD6A3F4B827B5CB5688268A536B3C304A6BC2C*)IL2CPP_GET_ACTIVE_EXCEPTION(EvaluateException_t78BD6A3F4B827B5CB5688268A536B3C304A6BC2C*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_046c;
}// end catch (depth: 1)
IL_046c:
{
int32_t L_166 = ___op3;
RuntimeObject* L_167 = ___vLeft0;
NullCheck(L_167);
Type_t* L_168;
L_168 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_167, NULL);
RuntimeObject* L_169 = ___vRight1;
NullCheck(L_169);
Type_t* L_170;
L_170 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_169, NULL);
BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3(__this, L_166, L_168, L_170, NULL);
int32_t L_171 = V_0;
return L_171;
}
IL_0482:
{
int32_t L_172 = V_1;
return L_172;
}
}
// System.Object System.Data.BinaryNode::EvalBinaryOp(System.Int32,System.Data.ExpressionNode,System.Data.ExpressionNode,System.Data.DataRow,System.Data.DataRowVersion,System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___op0, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___left1, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___right2, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row3, int32_t ___version4, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___recordNos5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
Type_t* V_5 = NULL;
Type_t* V_6 = NULL;
int32_t V_7 = 0;
int32_t V_8 = 0;
bool V_9 = false;
bool V_10 = false;
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* V_11 = NULL;
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 V_12;
memset((&V_12), 0, sizeof(V_12));
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 V_13;
memset((&V_13), 0, sizeof(V_13));
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 V_14;
memset((&V_14), 0, sizeof(V_14));
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 V_15;
memset((&V_15), 0, sizeof(V_15));
double V_16 = 0.0;
RuntimeObject* V_17 = NULL;
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 V_18;
memset((&V_18), 0, sizeof(V_18));
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 V_19;
memset((&V_19), 0, sizeof(V_19));
int32_t V_20 = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
bool G_B239_0 = false;
{
int32_t L_0 = ___op0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)27))))
{
goto IL_00fc;
}
}
{
int32_t L_1 = ___op0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)26))))
{
goto IL_00fc;
}
}
{
int32_t L_2 = ___op0;
if ((((int32_t)L_2) == ((int32_t)5)))
{
goto IL_00fc;
}
}
{
int32_t L_3 = ___op0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)13))))
{
goto IL_00fc;
}
}
{
int32_t L_4 = ___op0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)39))))
{
goto IL_00fc;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_5 = ___left1;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_6 = ___row3;
int32_t L_7 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = ___recordNos5;
RuntimeObject* L_9;
L_9 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_5, L_6, L_7, L_8, NULL);
V_0 = L_9;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_10 = ___right2;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_11 = ___row3;
int32_t L_12 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_13 = ___recordNos5;
RuntimeObject* L_14;
L_14 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_10, L_11, L_12, L_13, NULL);
V_1 = L_14;
RuntimeObject* L_15 = V_0;
NullCheck(L_15);
Type_t* L_16;
L_16 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_15, NULL);
V_5 = L_16;
RuntimeObject* L_17 = V_1;
NullCheck(L_17);
Type_t* L_18;
L_18 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_17, NULL);
V_6 = L_18;
Type_t* L_19 = V_5;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
int32_t L_20;
L_20 = DataStorage_GetStorageType_mDD0D0A90F39994863F9A9E0551C47076D10A5E33(L_19, NULL);
V_7 = L_20;
Type_t* L_21 = V_6;
int32_t L_22;
L_22 = DataStorage_GetStorageType_mDD0D0A90F39994863F9A9E0551C47076D10A5E33(L_21, NULL);
V_8 = L_22;
int32_t L_23 = V_7;
bool L_24;
L_24 = DataStorage_IsSqlType_m7FA180A7030104A7D160A660F70CD1F028181B7A(L_23, NULL);
V_9 = L_24;
int32_t L_25 = V_8;
bool L_26;
L_26 = DataStorage_IsSqlType_m7FA180A7030104A7D160A660F70CD1F028181B7A(L_25, NULL);
V_10 = L_26;
bool L_27 = V_9;
if (!L_27)
{
goto IL_0083;
}
}
{
RuntimeObject* L_28 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_29;
L_29 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_28, NULL);
if (!L_29)
{
goto IL_0083;
}
}
{
RuntimeObject* L_30 = V_0;
return L_30;
}
IL_0083:
{
bool L_31 = V_10;
if (!L_31)
{
goto IL_0091;
}
}
{
RuntimeObject* L_32 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_33;
L_33 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_32, NULL);
if (!L_33)
{
goto IL_0091;
}
}
{
RuntimeObject* L_34 = V_1;
return L_34;
}
IL_0091:
{
RuntimeObject* L_35 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_36 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_35) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_36)))
{
goto IL_00a1;
}
}
{
RuntimeObject* L_37 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_38 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_37) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_38))))
{
goto IL_00a7;
}
}
IL_00a1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_39 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
return L_39;
}
IL_00a7:
{
bool L_40 = V_9;
bool L_41 = V_10;
if (!((int32_t)((int32_t)L_40|(int32_t)L_41)))
{
goto IL_00ce;
}
}
{
int32_t L_42 = V_7;
int32_t L_43 = V_8;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_44 = ___left1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_45 = ___right2;
int32_t L_46 = ___op0;
int32_t L_47;
L_47 = BinaryNode_ResultSqlType_m50B087B54D7AD34C3771B7F9994A9AA825AF9EC6(__this, L_42, L_43, (bool)((!(((RuntimeObject*)(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)((ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)IsInstSealed((RuntimeObject*)L_44, ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), (bool)((!(((RuntimeObject*)(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)((ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)IsInstSealed((RuntimeObject*)L_45, ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), L_46, NULL);
V_2 = L_47;
goto IL_00ec;
}
IL_00ce:
{
int32_t L_48 = V_7;
int32_t L_49 = V_8;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_50 = ___left1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_51 = ___right2;
int32_t L_52 = ___op0;
int32_t L_53;
L_53 = BinaryNode_ResultType_m4416FF1A35FF5D93EA117D614D280D808AED1FDF(__this, L_48, L_49, (bool)((!(((RuntimeObject*)(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)((ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)IsInstSealed((RuntimeObject*)L_50, ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), (bool)((!(((RuntimeObject*)(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)((ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)IsInstSealed((RuntimeObject*)L_51, ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), L_52, NULL);
V_2 = L_53;
}
IL_00ec:
{
int32_t L_54 = V_2;
if (L_54)
{
goto IL_0106;
}
}
{
int32_t L_55 = ___op0;
Type_t* L_56 = V_5;
Type_t* L_57 = V_6;
BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3(__this, L_55, L_56, L_57, NULL);
goto IL_0106;
}
IL_00fc:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_58 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_59 = L_58;
V_1 = L_59;
V_0 = L_59;
V_2 = 0;
}
IL_0106:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_60 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_3 = L_60;
V_4 = (bool)0;
}
try
{// begin try (depth: 1)
{
int32_t L_61 = ___op0;
switch (((int32_t)il2cpp_codegen_subtract(L_61, 5)))
{
case 0:
{
goto IL_1635_1;
}
case 1:
{
goto IL_16e4_1;
}
case 2:
{
goto IL_10f3_1;
}
case 3:
{
goto IL_1148_1;
}
case 4:
{
goto IL_119d_1;
}
case 5:
{
goto IL_11f2_1;
}
case 6:
{
goto IL_124a_1;
}
case 7:
{
goto IL_12a2_1;
}
case 8:
{
goto IL_12f7_1;
}
case 9:
{
goto IL_16e4_1;
}
case 10:
{
goto IL_0180_1;
}
case 11:
{
goto IL_061a_1;
}
case 12:
{
goto IL_0a4d_1;
}
case 13:
{
goto IL_0d9e_1;
}
case 14:
{
goto IL_16e4_1;
}
case 15:
{
goto IL_1555_1;
}
case 16:
{
goto IL_16e4_1;
}
case 17:
{
goto IL_16e4_1;
}
case 18:
{
goto IL_16e4_1;
}
case 19:
{
goto IL_16e4_1;
}
case 20:
{
goto IL_16e4_1;
}
case 21:
{
goto IL_1375_1;
}
case 22:
{
goto IL_1480_1;
}
}
}
{
int32_t L_62 = ___op0;
if ((((int32_t)L_62) == ((int32_t)((int32_t)39))))
{
goto IL_1336_1;
}
}
{
goto IL_16e4_1;
}
IL_0180_1:
{
int32_t L_63 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_63, 4)))
{
case 0:
{
goto IL_03f1_1;
}
case 1:
{
goto IL_0255_1;
}
case 2:
{
goto IL_0221_1;
}
case 3:
{
goto IL_0289_1;
}
case 4:
{
goto IL_02bd_1;
}
case 5:
{
goto IL_02f1_1;
}
case 6:
{
goto IL_0315_1;
}
case 7:
{
goto IL_035d_1;
}
case 8:
{
goto IL_0339_1;
}
case 9:
{
goto IL_03a9_1;
}
case 10:
{
goto IL_03cd_1;
}
case 11:
{
goto IL_0381_1;
}
case 12:
{
goto IL_0414_1;
}
case 13:
{
goto IL_0474_1;
}
case 14:
{
goto IL_03f1_1;
}
case 15:
{
goto IL_0612_1;
}
case 16:
{
goto IL_0612_1;
}
case 17:
{
goto IL_0612_1;
}
case 18:
{
goto IL_0612_1;
}
case 19:
{
goto IL_0612_1;
}
case 20:
{
goto IL_0612_1;
}
case 21:
{
goto IL_0612_1;
}
case 22:
{
goto IL_0612_1;
}
case 23:
{
goto IL_0612_1;
}
case 24:
{
goto IL_0554_1;
}
case 25:
{
goto IL_0612_1;
}
case 26:
{
goto IL_0612_1;
}
case 27:
{
goto IL_058c_1;
}
case 28:
{
goto IL_051c_1;
}
case 29:
{
goto IL_04e4_1;
}
case 30:
{
goto IL_0612_1;
}
case 31:
{
goto IL_0490_1;
}
case 32:
{
goto IL_04ac_1;
}
case 33:
{
goto IL_04c8_1;
}
case 34:
{
goto IL_0538_1;
}
case 35:
{
goto IL_0500_1;
}
case 36:
{
goto IL_0570_1;
}
}
}
{
goto IL_0612_1;
}
IL_0221_1:
{
RuntimeObject* L_64 = V_0;
RuntimeObject* L_65;
L_65 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint8_t L_66;
L_66 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_64, L_65, NULL);
RuntimeObject* L_67 = V_1;
RuntimeObject* L_68;
L_68 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_69;
L_69 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_67, L_68, NULL);
int32_t L_70 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)L_69));
RuntimeObject* L_71 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_70);
RuntimeObject* L_72;
L_72 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_73;
L_73 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_71, L_72, NULL);
uint8_t L_74 = L_73;
RuntimeObject* L_75 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_74);
V_3 = L_75;
goto IL_16eb_1;
}
IL_0255_1:
{
RuntimeObject* L_76 = V_0;
RuntimeObject* L_77;
L_77 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int8_t L_78;
L_78 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_76, L_77, NULL);
RuntimeObject* L_79 = V_1;
RuntimeObject* L_80;
L_80 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_81;
L_81 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_79, L_80, NULL);
int32_t L_82 = ((int32_t)il2cpp_codegen_add((int32_t)L_78, (int32_t)L_81));
RuntimeObject* L_83 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_82);
RuntimeObject* L_84;
L_84 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_85;
L_85 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_83, L_84, NULL);
int8_t L_86 = L_85;
RuntimeObject* L_87 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_86);
V_3 = L_87;
goto IL_16eb_1;
}
IL_0289_1:
{
RuntimeObject* L_88 = V_0;
RuntimeObject* L_89;
L_89 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int16_t L_90;
L_90 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_88, L_89, NULL);
RuntimeObject* L_91 = V_1;
RuntimeObject* L_92;
L_92 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_93;
L_93 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_91, L_92, NULL);
int32_t L_94 = ((int32_t)il2cpp_codegen_add((int32_t)L_90, (int32_t)L_93));
RuntimeObject* L_95 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_94);
RuntimeObject* L_96;
L_96 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_97;
L_97 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_95, L_96, NULL);
int16_t L_98 = L_97;
RuntimeObject* L_99 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_98);
V_3 = L_99;
goto IL_16eb_1;
}
IL_02bd_1:
{
RuntimeObject* L_100 = V_0;
RuntimeObject* L_101;
L_101 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint16_t L_102;
L_102 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_100, L_101, NULL);
RuntimeObject* L_103 = V_1;
RuntimeObject* L_104;
L_104 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_105;
L_105 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_103, L_104, NULL);
int32_t L_106 = ((int32_t)il2cpp_codegen_add((int32_t)L_102, (int32_t)L_105));
RuntimeObject* L_107 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_106);
RuntimeObject* L_108;
L_108 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_109;
L_109 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_107, L_108, NULL);
uint16_t L_110 = L_109;
RuntimeObject* L_111 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_110);
V_3 = L_111;
goto IL_16eb_1;
}
IL_02f1_1:
{
RuntimeObject* L_112 = V_0;
RuntimeObject* L_113;
L_113 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_114;
L_114 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_112, L_113, NULL);
RuntimeObject* L_115 = V_1;
RuntimeObject* L_116;
L_116 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int32_t L_117;
L_117 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_115, L_116, NULL);
if (((int64_t)L_114 + (int64_t)L_117 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_114 + (int64_t)L_117 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
int32_t L_118 = ((int32_t)il2cpp_codegen_add(L_114, L_117));
RuntimeObject* L_119 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_118);
V_3 = L_119;
goto IL_16eb_1;
}
IL_0315_1:
{
RuntimeObject* L_120 = V_0;
RuntimeObject* L_121;
L_121 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_122;
L_122 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_120, L_121, NULL);
RuntimeObject* L_123 = V_1;
RuntimeObject* L_124;
L_124 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint32_t L_125;
L_125 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_123, L_124, NULL);
if ((uint64_t)(uint32_t)L_122 + (uint64_t)(uint32_t)L_125 > (uint64_t)(uint32_t)kIl2CppUInt32Max)
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
uint32_t L_126 = ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_122, (int32_t)L_125)));
RuntimeObject* L_127 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_126);
V_3 = L_127;
goto IL_16eb_1;
}
IL_0339_1:
{
RuntimeObject* L_128 = V_0;
RuntimeObject* L_129;
L_129 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_130;
L_130 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_128, L_129, NULL);
RuntimeObject* L_131 = V_1;
RuntimeObject* L_132;
L_132 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint64_t L_133;
L_133 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_131, L_132, NULL);
if ((uint64_t)L_130 > kIl2CppUInt64Max - (uint64_t)L_133)
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
uint64_t L_134 = ((uint64_t)((int64_t)il2cpp_codegen_add((int64_t)L_130, (int64_t)L_133)));
RuntimeObject* L_135 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_134);
V_3 = L_135;
goto IL_16eb_1;
}
IL_035d_1:
{
RuntimeObject* L_136 = V_0;
RuntimeObject* L_137;
L_137 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_138;
L_138 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_136, L_137, NULL);
RuntimeObject* L_139 = V_1;
RuntimeObject* L_140;
L_140 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int64_t L_141;
L_141 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_139, L_140, NULL);
if (il2cpp_codegen_check_add_overflow((int64_t)L_138, (int64_t)L_141))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
int64_t L_142 = ((int64_t)il2cpp_codegen_add(L_138, L_141));
RuntimeObject* L_143 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_142);
V_3 = L_143;
goto IL_16eb_1;
}
IL_0381_1:
{
RuntimeObject* L_144 = V_0;
RuntimeObject* L_145;
L_145 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_146;
L_146 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_144, L_145, NULL);
RuntimeObject* L_147 = V_1;
RuntimeObject* L_148;
L_148 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_149;
L_149 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_147, L_148, NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_150;
L_150 = Decimal_op_Addition_m79AD1C3ED1E6345D50110EA4D20DAE724724B9DA(L_146, L_149, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_151 = L_150;
RuntimeObject* L_152 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_151);
V_3 = L_152;
goto IL_16eb_1;
}
IL_03a9_1:
{
RuntimeObject* L_153 = V_0;
RuntimeObject* L_154;
L_154 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_155;
L_155 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_153, L_154, NULL);
RuntimeObject* L_156 = V_1;
RuntimeObject* L_157;
L_157 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
float L_158;
L_158 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_156, L_157, NULL);
float L_159 = ((float)il2cpp_codegen_add(L_155, L_158));
RuntimeObject* L_160 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_159);
V_3 = L_160;
goto IL_16eb_1;
}
IL_03cd_1:
{
RuntimeObject* L_161 = V_0;
RuntimeObject* L_162;
L_162 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_163;
L_163 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_161, L_162, NULL);
RuntimeObject* L_164 = V_1;
RuntimeObject* L_165;
L_165 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
double L_166;
L_166 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_164, L_165, NULL);
double L_167 = ((double)il2cpp_codegen_add(L_163, L_166));
RuntimeObject* L_168 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_167);
V_3 = L_168;
goto IL_16eb_1;
}
IL_03f1_1:
{
RuntimeObject* L_169 = V_0;
RuntimeObject* L_170;
L_170 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
String_t* L_171;
L_171 = Convert_ToString_mCC5DC13CDF7E338DB15699432F28477C7DF52DE1(L_169, L_170, NULL);
RuntimeObject* L_172 = V_1;
RuntimeObject* L_173;
L_173 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
String_t* L_174;
L_174 = Convert_ToString_mCC5DC13CDF7E338DB15699432F28477C7DF52DE1(L_172, L_173, NULL);
String_t* L_175;
L_175 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_171, L_174, NULL);
V_3 = L_175;
goto IL_16eb_1;
}
IL_0414_1:
{
RuntimeObject* L_176 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_176, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_0440_1;
}
}
{
RuntimeObject* L_177 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_177, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))
{
goto IL_0440_1;
}
}
{
RuntimeObject* L_178 = V_1;
RuntimeObject* L_179 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_180;
L_180 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_178, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_179, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_181 = L_180;
RuntimeObject* L_182 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_181);
V_3 = L_182;
goto IL_16eb_1;
}
IL_0440_1:
{
RuntimeObject* L_183 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_183, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))
{
goto IL_046c_1;
}
}
{
RuntimeObject* L_184 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_184, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_046c_1;
}
}
{
RuntimeObject* L_185 = V_0;
RuntimeObject* L_186 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_187;
L_187 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_185, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_186, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_188 = L_187;
RuntimeObject* L_189 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_188);
V_3 = L_189;
goto IL_16eb_1;
}
IL_046c_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_0474_1:
{
RuntimeObject* L_190 = V_0;
RuntimeObject* L_191 = V_1;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_192;
L_192 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_190, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_191, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_193 = L_192;
RuntimeObject* L_194 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_193);
V_3 = L_194;
goto IL_16eb_1;
}
IL_0490_1:
{
RuntimeObject* L_195 = V_0;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_196;
L_196 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_195, NULL);
RuntimeObject* L_197 = V_1;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_198;
L_198 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_197, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_199;
L_199 = SqlInt16_op_Addition_m566F20783571310554E80E1BEEA543A61E102240(L_196, L_198, NULL);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_200 = L_199;
RuntimeObject* L_201 = Box(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var, &L_200);
V_3 = L_201;
goto IL_16eb_1;
}
IL_04ac_1:
{
RuntimeObject* L_202 = V_0;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_203;
L_203 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_202, NULL);
RuntimeObject* L_204 = V_1;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_205;
L_205 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_204, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_206;
L_206 = SqlInt32_op_Addition_m84EE359A27ED3C0653AE88AF625B954E64795B41(L_203, L_205, NULL);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_207 = L_206;
RuntimeObject* L_208 = Box(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var, &L_207);
V_3 = L_208;
goto IL_16eb_1;
}
IL_04c8_1:
{
RuntimeObject* L_209 = V_0;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_210;
L_210 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_209, NULL);
RuntimeObject* L_211 = V_1;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_212;
L_212 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_211, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_213;
L_213 = SqlInt64_op_Addition_mA1FDDD4C87FE996DF4E8A5D9AFDCB12BE59146E7(L_210, L_212, NULL);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_214 = L_213;
RuntimeObject* L_215 = Box(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var, &L_214);
V_3 = L_215;
goto IL_16eb_1;
}
IL_04e4_1:
{
RuntimeObject* L_216 = V_0;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_217;
L_217 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_216, NULL);
RuntimeObject* L_218 = V_1;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_219;
L_219 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_218, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_220;
L_220 = SqlDouble_op_Addition_m72B88477AC1F86C843B6CB2BFC0B226B3152F296(L_217, L_219, NULL);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_221 = L_220;
RuntimeObject* L_222 = Box(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var, &L_221);
V_3 = L_222;
goto IL_16eb_1;
}
IL_0500_1:
{
RuntimeObject* L_223 = V_0;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_224;
L_224 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_223, NULL);
RuntimeObject* L_225 = V_1;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_226;
L_226 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_225, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_227;
L_227 = SqlSingle_op_Addition_mF1F4B661B0470D920707E46833DB6060E0E52346(L_224, L_226, NULL);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_228 = L_227;
RuntimeObject* L_229 = Box(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var, &L_228);
V_3 = L_229;
goto IL_16eb_1;
}
IL_051c_1:
{
RuntimeObject* L_230 = V_0;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_231;
L_231 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_230, NULL);
RuntimeObject* L_232 = V_1;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_233;
L_233 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_232, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_234;
L_234 = SqlDecimal_op_Addition_m9DB6E446ECAB9E09DFD5A646F2651F331AE32E8F(L_231, L_233, NULL);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_235 = L_234;
RuntimeObject* L_236 = Box(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var, &L_235);
V_3 = L_236;
goto IL_16eb_1;
}
IL_0538_1:
{
RuntimeObject* L_237 = V_0;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_238;
L_238 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_237, NULL);
RuntimeObject* L_239 = V_1;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_240;
L_240 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_239, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_241;
L_241 = SqlMoney_op_Addition_mFC3355E03455B65E6C2FE455AE9B82D70A1A37A7(L_238, L_240, NULL);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_242 = L_241;
RuntimeObject* L_243 = Box(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var, &L_242);
V_3 = L_243;
goto IL_16eb_1;
}
IL_0554_1:
{
RuntimeObject* L_244 = V_0;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_245;
L_245 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_244, NULL);
RuntimeObject* L_246 = V_1;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_247;
L_247 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_246, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_248;
L_248 = SqlByte_op_Addition_m252AABE9936CB7E2FE48B824908CB74946FB347B(L_245, L_247, NULL);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_249 = L_248;
RuntimeObject* L_250 = Box(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var, &L_249);
V_3 = L_250;
goto IL_16eb_1;
}
IL_0570_1:
{
RuntimeObject* L_251 = V_0;
SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D L_252;
L_252 = SqlConvert_ConvertToSqlString_m857DD423CD1F6B9A1B7CABADF85438C8977D3768(L_251, NULL);
RuntimeObject* L_253 = V_1;
SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D L_254;
L_254 = SqlConvert_ConvertToSqlString_m857DD423CD1F6B9A1B7CABADF85438C8977D3768(L_253, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var);
SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D L_255;
L_255 = SqlString_op_Addition_m365257BA3FDD9D9037BBB086C824B2A69DDD6CB2(L_252, L_254, NULL);
SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D L_256 = L_255;
RuntimeObject* L_257 = Box(SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var, &L_256);
V_3 = L_257;
goto IL_16eb_1;
}
IL_058c_1:
{
RuntimeObject* L_258 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_258, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_05cb_1;
}
}
{
RuntimeObject* L_259 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_259, SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var)))
{
goto IL_05cb_1;
}
}
{
RuntimeObject* L_260 = V_1;
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_261;
L_261 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_260, NULL);
V_12 = L_261;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_262;
L_262 = SqlDateTime_get_Value_mDF93B79BDCDEBC53B67611B9426399F69BDFDDE5((&V_12), NULL);
RuntimeObject* L_263 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_264;
L_264 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_262, ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_263, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_265 = L_264;
RuntimeObject* L_266 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_265);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_267;
L_267 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_266, NULL);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_268 = L_267;
RuntimeObject* L_269 = Box(SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var, &L_268);
V_3 = L_269;
goto IL_16eb_1;
}
IL_05cb_1:
{
RuntimeObject* L_270 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_270, SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var)))
{
goto IL_060a_1;
}
}
{
RuntimeObject* L_271 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_271, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_060a_1;
}
}
{
RuntimeObject* L_272 = V_0;
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_273;
L_273 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_272, NULL);
V_13 = L_273;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_274;
L_274 = SqlDateTime_get_Value_mDF93B79BDCDEBC53B67611B9426399F69BDFDDE5((&V_13), NULL);
RuntimeObject* L_275 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_276;
L_276 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_274, ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_275, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_277 = L_276;
RuntimeObject* L_278 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_277);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_279;
L_279 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_278, NULL);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_280 = L_279;
RuntimeObject* L_281 = Box(SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var, &L_280);
V_3 = L_281;
goto IL_16eb_1;
}
IL_060a_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_0612_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_061a_1:
{
int32_t L_282 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_282, 5)))
{
case 0:
{
goto IL_0703_1;
}
case 1:
{
goto IL_06b3_1;
}
case 2:
{
goto IL_0737_1;
}
case 3:
{
goto IL_0787_1;
}
case 4:
{
goto IL_07bb_1;
}
case 5:
{
goto IL_07fb_1;
}
case 6:
{
goto IL_081f_1;
}
case 7:
{
goto IL_085f_1;
}
case 8:
{
goto IL_08c7_1;
}
case 9:
{
goto IL_0907_1;
}
case 10:
{
goto IL_0883_1;
}
case 11:
{
goto IL_0963_1;
}
case 12:
{
goto IL_097f_1;
}
case 13:
{
goto IL_0a45_1;
}
case 14:
{
goto IL_0a45_1;
}
case 15:
{
goto IL_0a45_1;
}
case 16:
{
goto IL_0a45_1;
}
case 17:
{
goto IL_0a45_1;
}
case 18:
{
goto IL_0a45_1;
}
case 19:
{
goto IL_0a45_1;
}
case 20:
{
goto IL_0a45_1;
}
case 21:
{
goto IL_0a45_1;
}
case 22:
{
goto IL_0a45_1;
}
case 23:
{
goto IL_06e7_1;
}
case 24:
{
goto IL_0a45_1;
}
case 25:
{
goto IL_0a45_1;
}
case 26:
{
goto IL_09bf_1;
}
case 27:
{
goto IL_08ab_1;
}
case 28:
{
goto IL_092b_1;
}
case 29:
{
goto IL_0a45_1;
}
case 30:
{
goto IL_076b_1;
}
case 31:
{
goto IL_07df_1;
}
case 32:
{
goto IL_0843_1;
}
case 33:
{
goto IL_0947_1;
}
case 34:
{
goto IL_08eb_1;
}
}
}
{
goto IL_0a45_1;
}
IL_06b3_1:
{
RuntimeObject* L_283 = V_0;
RuntimeObject* L_284;
L_284 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint8_t L_285;
L_285 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_283, L_284, NULL);
RuntimeObject* L_286 = V_1;
RuntimeObject* L_287;
L_287 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_288;
L_288 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_286, L_287, NULL);
int32_t L_289 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_285, (int32_t)L_288));
RuntimeObject* L_290 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_289);
RuntimeObject* L_291;
L_291 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_292;
L_292 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_290, L_291, NULL);
uint8_t L_293 = L_292;
RuntimeObject* L_294 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_293);
V_3 = L_294;
goto IL_16eb_1;
}
IL_06e7_1:
{
RuntimeObject* L_295 = V_0;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_296;
L_296 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_295, NULL);
RuntimeObject* L_297 = V_1;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_298;
L_298 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_297, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_299;
L_299 = SqlByte_op_Subtraction_mFF3FBB4D70A527F55F1438DE4AA0CDB4CE38DB8C(L_296, L_298, NULL);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_300 = L_299;
RuntimeObject* L_301 = Box(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var, &L_300);
V_3 = L_301;
goto IL_16eb_1;
}
IL_0703_1:
{
RuntimeObject* L_302 = V_0;
RuntimeObject* L_303;
L_303 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int8_t L_304;
L_304 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_302, L_303, NULL);
RuntimeObject* L_305 = V_1;
RuntimeObject* L_306;
L_306 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_307;
L_307 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_305, L_306, NULL);
int32_t L_308 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_304, (int32_t)L_307));
RuntimeObject* L_309 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_308);
RuntimeObject* L_310;
L_310 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_311;
L_311 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_309, L_310, NULL);
int8_t L_312 = L_311;
RuntimeObject* L_313 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_312);
V_3 = L_313;
goto IL_16eb_1;
}
IL_0737_1:
{
RuntimeObject* L_314 = V_0;
RuntimeObject* L_315;
L_315 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int16_t L_316;
L_316 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_314, L_315, NULL);
RuntimeObject* L_317 = V_1;
RuntimeObject* L_318;
L_318 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_319;
L_319 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_317, L_318, NULL);
int32_t L_320 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_316, (int32_t)L_319));
RuntimeObject* L_321 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_320);
RuntimeObject* L_322;
L_322 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_323;
L_323 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_321, L_322, NULL);
int16_t L_324 = L_323;
RuntimeObject* L_325 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_324);
V_3 = L_325;
goto IL_16eb_1;
}
IL_076b_1:
{
RuntimeObject* L_326 = V_0;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_327;
L_327 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_326, NULL);
RuntimeObject* L_328 = V_1;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_329;
L_329 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_328, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_330;
L_330 = SqlInt16_op_Subtraction_m4BC2415479DE41F90466A35DFA129F66B90CFEE6(L_327, L_329, NULL);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_331 = L_330;
RuntimeObject* L_332 = Box(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var, &L_331);
V_3 = L_332;
goto IL_16eb_1;
}
IL_0787_1:
{
RuntimeObject* L_333 = V_0;
RuntimeObject* L_334;
L_334 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint16_t L_335;
L_335 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_333, L_334, NULL);
RuntimeObject* L_336 = V_1;
RuntimeObject* L_337;
L_337 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_338;
L_338 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_336, L_337, NULL);
int32_t L_339 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_335, (int32_t)L_338));
RuntimeObject* L_340 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_339);
RuntimeObject* L_341;
L_341 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_342;
L_342 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_340, L_341, NULL);
uint16_t L_343 = L_342;
RuntimeObject* L_344 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_343);
V_3 = L_344;
goto IL_16eb_1;
}
IL_07bb_1:
{
RuntimeObject* L_345 = V_0;
RuntimeObject* L_346;
L_346 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_347;
L_347 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_345, L_346, NULL);
RuntimeObject* L_348 = V_1;
RuntimeObject* L_349;
L_349 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int32_t L_350;
L_350 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_348, L_349, NULL);
if (((int64_t)L_347 - (int64_t)L_350 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_347 - (int64_t)L_350 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
int32_t L_351 = ((int32_t)il2cpp_codegen_subtract(L_347, L_350));
RuntimeObject* L_352 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_351);
V_3 = L_352;
goto IL_16eb_1;
}
IL_07df_1:
{
RuntimeObject* L_353 = V_0;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_354;
L_354 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_353, NULL);
RuntimeObject* L_355 = V_1;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_356;
L_356 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_355, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_357;
L_357 = SqlInt32_op_Subtraction_m82E30824C1A46C12C3C2032BF750A08E0E3B7710(L_354, L_356, NULL);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_358 = L_357;
RuntimeObject* L_359 = Box(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var, &L_358);
V_3 = L_359;
goto IL_16eb_1;
}
IL_07fb_1:
{
RuntimeObject* L_360 = V_0;
RuntimeObject* L_361;
L_361 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_362;
L_362 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_360, L_361, NULL);
RuntimeObject* L_363 = V_1;
RuntimeObject* L_364;
L_364 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint32_t L_365;
L_365 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_363, L_364, NULL);
if ((uint64_t)(uint32_t)L_362 - (uint64_t)(uint32_t)L_365 > (uint64_t)(uint32_t)kIl2CppUInt32Max)
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
uint32_t L_366 = ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_362, (int32_t)L_365)));
RuntimeObject* L_367 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_366);
V_3 = L_367;
goto IL_16eb_1;
}
IL_081f_1:
{
RuntimeObject* L_368 = V_0;
RuntimeObject* L_369;
L_369 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_370;
L_370 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_368, L_369, NULL);
RuntimeObject* L_371 = V_1;
RuntimeObject* L_372;
L_372 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int64_t L_373;
L_373 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_371, L_372, NULL);
if (il2cpp_codegen_check_sub_overflow((int64_t)L_370, (int64_t)L_373))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
int64_t L_374 = ((int64_t)il2cpp_codegen_subtract(L_370, L_373));
RuntimeObject* L_375 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_374);
V_3 = L_375;
goto IL_16eb_1;
}
IL_0843_1:
{
RuntimeObject* L_376 = V_0;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_377;
L_377 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_376, NULL);
RuntimeObject* L_378 = V_1;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_379;
L_379 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_378, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_380;
L_380 = SqlInt64_op_Subtraction_m3E20CA6176DF7F347D86215CB2F776777BB9A3C4(L_377, L_379, NULL);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_381 = L_380;
RuntimeObject* L_382 = Box(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var, &L_381);
V_3 = L_382;
goto IL_16eb_1;
}
IL_085f_1:
{
RuntimeObject* L_383 = V_0;
RuntimeObject* L_384;
L_384 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_385;
L_385 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_383, L_384, NULL);
RuntimeObject* L_386 = V_1;
RuntimeObject* L_387;
L_387 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint64_t L_388;
L_388 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_386, L_387, NULL);
if ((uint64_t)L_385 < (uint64_t)L_388)
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
uint64_t L_389 = ((uint64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_385, (int64_t)L_388)));
RuntimeObject* L_390 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_389);
V_3 = L_390;
goto IL_16eb_1;
}
IL_0883_1:
{
RuntimeObject* L_391 = V_0;
RuntimeObject* L_392;
L_392 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_393;
L_393 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_391, L_392, NULL);
RuntimeObject* L_394 = V_1;
RuntimeObject* L_395;
L_395 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_396;
L_396 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_394, L_395, NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_397;
L_397 = Decimal_op_Subtraction_m50F5DC718BD003A09A5BC62BAA3DECD0745AD3F1(L_393, L_396, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_398 = L_397;
RuntimeObject* L_399 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_398);
V_3 = L_399;
goto IL_16eb_1;
}
IL_08ab_1:
{
RuntimeObject* L_400 = V_0;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_401;
L_401 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_400, NULL);
RuntimeObject* L_402 = V_1;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_403;
L_403 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_402, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_404;
L_404 = SqlDecimal_op_Subtraction_m1E3A30CB45F7D55DBF8B52DED3CE8D938EC2A686(L_401, L_403, NULL);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_405 = L_404;
RuntimeObject* L_406 = Box(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var, &L_405);
V_3 = L_406;
goto IL_16eb_1;
}
IL_08c7_1:
{
RuntimeObject* L_407 = V_0;
RuntimeObject* L_408;
L_408 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_409;
L_409 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_407, L_408, NULL);
RuntimeObject* L_410 = V_1;
RuntimeObject* L_411;
L_411 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
float L_412;
L_412 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_410, L_411, NULL);
float L_413 = ((float)il2cpp_codegen_subtract(L_409, L_412));
RuntimeObject* L_414 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_413);
V_3 = L_414;
goto IL_16eb_1;
}
IL_08eb_1:
{
RuntimeObject* L_415 = V_0;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_416;
L_416 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_415, NULL);
RuntimeObject* L_417 = V_1;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_418;
L_418 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_417, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_419;
L_419 = SqlSingle_op_Subtraction_m7FFE1C6B1A407A086E8DA9A53DE91D32D10BFFE3(L_416, L_418, NULL);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_420 = L_419;
RuntimeObject* L_421 = Box(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var, &L_420);
V_3 = L_421;
goto IL_16eb_1;
}
IL_0907_1:
{
RuntimeObject* L_422 = V_0;
RuntimeObject* L_423;
L_423 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_424;
L_424 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_422, L_423, NULL);
RuntimeObject* L_425 = V_1;
RuntimeObject* L_426;
L_426 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
double L_427;
L_427 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_425, L_426, NULL);
double L_428 = ((double)il2cpp_codegen_subtract(L_424, L_427));
RuntimeObject* L_429 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_428);
V_3 = L_429;
goto IL_16eb_1;
}
IL_092b_1:
{
RuntimeObject* L_430 = V_0;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_431;
L_431 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_430, NULL);
RuntimeObject* L_432 = V_1;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_433;
L_433 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_432, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_434;
L_434 = SqlDouble_op_Subtraction_mF302CE65AE3F34EFC999B0AFC20F856FB1B748D7(L_431, L_433, NULL);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_435 = L_434;
RuntimeObject* L_436 = Box(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var, &L_435);
V_3 = L_436;
goto IL_16eb_1;
}
IL_0947_1:
{
RuntimeObject* L_437 = V_0;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_438;
L_438 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_437, NULL);
RuntimeObject* L_439 = V_1;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_440;
L_440 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_439, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_441;
L_441 = SqlMoney_op_Subtraction_mB5F1F6EB92EEF53465C8E3CFDBB9B5BD7C998209(L_438, L_440, NULL);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_442 = L_441;
RuntimeObject* L_443 = Box(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var, &L_442);
V_3 = L_443;
goto IL_16eb_1;
}
IL_0963_1:
{
RuntimeObject* L_444 = V_0;
RuntimeObject* L_445 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_446;
L_446 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_444, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_445, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_447 = L_446;
RuntimeObject* L_448 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_447);
V_3 = L_448;
goto IL_16eb_1;
}
IL_097f_1:
{
RuntimeObject* L_449 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_449, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))
{
goto IL_09a3_1;
}
}
{
RuntimeObject* L_450 = V_0;
RuntimeObject* L_451 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_452;
L_452 = DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_450, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_451, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_453 = L_452;
RuntimeObject* L_454 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_453);
V_3 = L_454;
goto IL_16eb_1;
}
IL_09a3_1:
{
RuntimeObject* L_455 = V_0;
RuntimeObject* L_456 = V_1;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_457;
L_457 = TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8(((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_455, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_456, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_458 = L_457;
RuntimeObject* L_459 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_458);
V_3 = L_459;
goto IL_16eb_1;
}
IL_09bf_1:
{
RuntimeObject* L_460 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_460, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_09fe_1;
}
}
{
RuntimeObject* L_461 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_461, SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var)))
{
goto IL_09fe_1;
}
}
{
RuntimeObject* L_462 = V_1;
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_463;
L_463 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_462, NULL);
V_14 = L_463;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_464;
L_464 = SqlDateTime_get_Value_mDF93B79BDCDEBC53B67611B9426399F69BDFDDE5((&V_14), NULL);
RuntimeObject* L_465 = V_0;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_466;
L_466 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_464, ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_465, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_467 = L_466;
RuntimeObject* L_468 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_467);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_469;
L_469 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_468, NULL);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_470 = L_469;
RuntimeObject* L_471 = Box(SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var, &L_470);
V_3 = L_471;
goto IL_16eb_1;
}
IL_09fe_1:
{
RuntimeObject* L_472 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_472, SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var)))
{
goto IL_0a3d_1;
}
}
{
RuntimeObject* L_473 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_473, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_0a3d_1;
}
}
{
RuntimeObject* L_474 = V_0;
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_475;
L_475 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_474, NULL);
V_15 = L_475;
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_476;
L_476 = SqlDateTime_get_Value_mDF93B79BDCDEBC53B67611B9426399F69BDFDDE5((&V_15), NULL);
RuntimeObject* L_477 = V_1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_478;
L_478 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_476, ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_477, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_479 = L_478;
RuntimeObject* L_480 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_479);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_481;
L_481 = SqlConvert_ConvertToSqlDateTime_m3752A352FC30FF9C2E1735A39C69EF0957B63560(L_480, NULL);
SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2 L_482 = L_481;
RuntimeObject* L_483 = Box(SqlDateTime_tFB5902479382E8A61934E274E7BBF3280A3D25B2_il2cpp_TypeInfo_var, &L_482);
V_3 = L_483;
goto IL_16eb_1;
}
IL_0a3d_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_0a45_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_0a4d_1:
{
int32_t L_484 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_484, 5)))
{
case 0:
{
goto IL_0b36_1;
}
case 1:
{
goto IL_0ae6_1;
}
case 2:
{
goto IL_0b6a_1;
}
case 3:
{
goto IL_0bba_1;
}
case 4:
{
goto IL_0bee_1;
}
case 5:
{
goto IL_0c2e_1;
}
case 6:
{
goto IL_0c52_1;
}
case 7:
{
goto IL_0c92_1;
}
case 8:
{
goto IL_0cfa_1;
}
case 9:
{
goto IL_0d56_1;
}
case 10:
{
goto IL_0cb6_1;
}
case 11:
{
goto IL_0d96_1;
}
case 12:
{
goto IL_0d96_1;
}
case 13:
{
goto IL_0d96_1;
}
case 14:
{
goto IL_0d96_1;
}
case 15:
{
goto IL_0d96_1;
}
case 16:
{
goto IL_0d96_1;
}
case 17:
{
goto IL_0d96_1;
}
case 18:
{
goto IL_0d96_1;
}
case 19:
{
goto IL_0d96_1;
}
case 20:
{
goto IL_0d96_1;
}
case 21:
{
goto IL_0d96_1;
}
case 22:
{
goto IL_0d96_1;
}
case 23:
{
goto IL_0b1a_1;
}
case 24:
{
goto IL_0d96_1;
}
case 25:
{
goto IL_0d96_1;
}
case 26:
{
goto IL_0d96_1;
}
case 27:
{
goto IL_0cde_1;
}
case 28:
{
goto IL_0d7a_1;
}
case 29:
{
goto IL_0d96_1;
}
case 30:
{
goto IL_0b9e_1;
}
case 31:
{
goto IL_0c12_1;
}
case 32:
{
goto IL_0c76_1;
}
case 33:
{
goto IL_0d3a_1;
}
case 34:
{
goto IL_0d1e_1;
}
}
}
{
goto IL_0d96_1;
}
IL_0ae6_1:
{
RuntimeObject* L_485 = V_0;
RuntimeObject* L_486;
L_486 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint8_t L_487;
L_487 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_485, L_486, NULL);
RuntimeObject* L_488 = V_1;
RuntimeObject* L_489;
L_489 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_490;
L_490 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_488, L_489, NULL);
int32_t L_491 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_487, (int32_t)L_490));
RuntimeObject* L_492 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_491);
RuntimeObject* L_493;
L_493 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_494;
L_494 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_492, L_493, NULL);
uint8_t L_495 = L_494;
RuntimeObject* L_496 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_495);
V_3 = L_496;
goto IL_16eb_1;
}
IL_0b1a_1:
{
RuntimeObject* L_497 = V_0;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_498;
L_498 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_497, NULL);
RuntimeObject* L_499 = V_1;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_500;
L_500 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_499, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_501;
L_501 = SqlByte_op_Multiply_mBD9FC501CF68C81E459550CEAE6CE16EAACEEA1A(L_498, L_500, NULL);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_502 = L_501;
RuntimeObject* L_503 = Box(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var, &L_502);
V_3 = L_503;
goto IL_16eb_1;
}
IL_0b36_1:
{
RuntimeObject* L_504 = V_0;
RuntimeObject* L_505;
L_505 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int8_t L_506;
L_506 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_504, L_505, NULL);
RuntimeObject* L_507 = V_1;
RuntimeObject* L_508;
L_508 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_509;
L_509 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_507, L_508, NULL);
int32_t L_510 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_506, (int32_t)L_509));
RuntimeObject* L_511 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_510);
RuntimeObject* L_512;
L_512 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_513;
L_513 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_511, L_512, NULL);
int8_t L_514 = L_513;
RuntimeObject* L_515 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_514);
V_3 = L_515;
goto IL_16eb_1;
}
IL_0b6a_1:
{
RuntimeObject* L_516 = V_0;
RuntimeObject* L_517;
L_517 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int16_t L_518;
L_518 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_516, L_517, NULL);
RuntimeObject* L_519 = V_1;
RuntimeObject* L_520;
L_520 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_521;
L_521 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_519, L_520, NULL);
int32_t L_522 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_518, (int32_t)L_521));
RuntimeObject* L_523 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_522);
RuntimeObject* L_524;
L_524 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_525;
L_525 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_523, L_524, NULL);
int16_t L_526 = L_525;
RuntimeObject* L_527 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_526);
V_3 = L_527;
goto IL_16eb_1;
}
IL_0b9e_1:
{
RuntimeObject* L_528 = V_0;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_529;
L_529 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_528, NULL);
RuntimeObject* L_530 = V_1;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_531;
L_531 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_530, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_532;
L_532 = SqlInt16_op_Multiply_m674073FDB85C8B3FC526B0D78FF7215504CAA017(L_529, L_531, NULL);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_533 = L_532;
RuntimeObject* L_534 = Box(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var, &L_533);
V_3 = L_534;
goto IL_16eb_1;
}
IL_0bba_1:
{
RuntimeObject* L_535 = V_0;
RuntimeObject* L_536;
L_536 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint16_t L_537;
L_537 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_535, L_536, NULL);
RuntimeObject* L_538 = V_1;
RuntimeObject* L_539;
L_539 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_540;
L_540 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_538, L_539, NULL);
int32_t L_541 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_537, (int32_t)L_540));
RuntimeObject* L_542 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_541);
RuntimeObject* L_543;
L_543 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_544;
L_544 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_542, L_543, NULL);
uint16_t L_545 = L_544;
RuntimeObject* L_546 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_545);
V_3 = L_546;
goto IL_16eb_1;
}
IL_0bee_1:
{
RuntimeObject* L_547 = V_0;
RuntimeObject* L_548;
L_548 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_549;
L_549 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_547, L_548, NULL);
RuntimeObject* L_550 = V_1;
RuntimeObject* L_551;
L_551 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int32_t L_552;
L_552 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_550, L_551, NULL);
if (((int64_t)L_549 * (int64_t)L_552 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_549 * (int64_t)L_552 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
int32_t L_553 = ((int32_t)il2cpp_codegen_multiply(L_549, L_552));
RuntimeObject* L_554 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_553);
V_3 = L_554;
goto IL_16eb_1;
}
IL_0c12_1:
{
RuntimeObject* L_555 = V_0;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_556;
L_556 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_555, NULL);
RuntimeObject* L_557 = V_1;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_558;
L_558 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_557, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_559;
L_559 = SqlInt32_op_Multiply_mCCB00A7AE491D5575A02EF0EEFF11AE5C45B9094(L_556, L_558, NULL);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_560 = L_559;
RuntimeObject* L_561 = Box(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var, &L_560);
V_3 = L_561;
goto IL_16eb_1;
}
IL_0c2e_1:
{
RuntimeObject* L_562 = V_0;
RuntimeObject* L_563;
L_563 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_564;
L_564 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_562, L_563, NULL);
RuntimeObject* L_565 = V_1;
RuntimeObject* L_566;
L_566 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint32_t L_567;
L_567 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_565, L_566, NULL);
if ((uint64_t)(uint32_t)L_564 * (uint64_t)(uint32_t)L_567 > (uint64_t)(uint32_t)kIl2CppUInt32Max)
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
uint32_t L_568 = ((uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_564, (int32_t)L_567)));
RuntimeObject* L_569 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_568);
V_3 = L_569;
goto IL_16eb_1;
}
IL_0c52_1:
{
RuntimeObject* L_570 = V_0;
RuntimeObject* L_571;
L_571 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_572;
L_572 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_570, L_571, NULL);
RuntimeObject* L_573 = V_1;
RuntimeObject* L_574;
L_574 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int64_t L_575;
L_575 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_573, L_574, NULL);
if (il2cpp_codegen_check_mul_overflow_i64((int64_t)L_572, (int64_t)L_575, kIl2CppInt64Min, kIl2CppInt64Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
int64_t L_576 = ((int64_t)il2cpp_codegen_multiply(L_572, L_575));
RuntimeObject* L_577 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_576);
V_3 = L_577;
goto IL_16eb_1;
}
IL_0c76_1:
{
RuntimeObject* L_578 = V_0;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_579;
L_579 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_578, NULL);
RuntimeObject* L_580 = V_1;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_581;
L_581 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_580, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_582;
L_582 = SqlInt64_op_Multiply_m8ACC9BC36C37BEC5415E943E89BEFE1149652939(L_579, L_581, NULL);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_583 = L_582;
RuntimeObject* L_584 = Box(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var, &L_583);
V_3 = L_584;
goto IL_16eb_1;
}
IL_0c92_1:
{
RuntimeObject* L_585 = V_0;
RuntimeObject* L_586;
L_586 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_587;
L_587 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_585, L_586, NULL);
RuntimeObject* L_588 = V_1;
RuntimeObject* L_589;
L_589 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint64_t L_590;
L_590 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_588, L_589, NULL);
if (il2cpp_codegen_check_mul_oveflow_u64(L_587, L_590))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var);
uint64_t L_591 = ((uint64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_587, (int64_t)L_590)));
RuntimeObject* L_592 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_591);
V_3 = L_592;
goto IL_16eb_1;
}
IL_0cb6_1:
{
RuntimeObject* L_593 = V_0;
RuntimeObject* L_594;
L_594 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_595;
L_595 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_593, L_594, NULL);
RuntimeObject* L_596 = V_1;
RuntimeObject* L_597;
L_597 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_598;
L_598 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_596, L_597, NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_599;
L_599 = Decimal_op_Multiply_mFD6D7FB94F0CDF935CEE8527EA9FD3EAB159EF19(L_595, L_598, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_600 = L_599;
RuntimeObject* L_601 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_600);
V_3 = L_601;
goto IL_16eb_1;
}
IL_0cde_1:
{
RuntimeObject* L_602 = V_0;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_603;
L_603 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_602, NULL);
RuntimeObject* L_604 = V_1;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_605;
L_605 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_604, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_606;
L_606 = SqlDecimal_op_Multiply_m8BDCAC9E3CDB405D152C72BACCBECD46DF8C1AAC(L_603, L_605, NULL);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_607 = L_606;
RuntimeObject* L_608 = Box(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var, &L_607);
V_3 = L_608;
goto IL_16eb_1;
}
IL_0cfa_1:
{
RuntimeObject* L_609 = V_0;
RuntimeObject* L_610;
L_610 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_611;
L_611 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_609, L_610, NULL);
RuntimeObject* L_612 = V_1;
RuntimeObject* L_613;
L_613 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
float L_614;
L_614 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_612, L_613, NULL);
float L_615 = ((float)il2cpp_codegen_multiply(L_611, L_614));
RuntimeObject* L_616 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_615);
V_3 = L_616;
goto IL_16eb_1;
}
IL_0d1e_1:
{
RuntimeObject* L_617 = V_0;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_618;
L_618 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_617, NULL);
RuntimeObject* L_619 = V_1;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_620;
L_620 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_619, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_621;
L_621 = SqlSingle_op_Multiply_mA068B08E26955349A1CD9C38245F821497EB1AE7(L_618, L_620, NULL);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_622 = L_621;
RuntimeObject* L_623 = Box(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var, &L_622);
V_3 = L_623;
goto IL_16eb_1;
}
IL_0d3a_1:
{
RuntimeObject* L_624 = V_0;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_625;
L_625 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_624, NULL);
RuntimeObject* L_626 = V_1;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_627;
L_627 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_626, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_628;
L_628 = SqlMoney_op_Multiply_mA20C2F3C2405C00DA3363059826361C6F26AB7FE(L_625, L_627, NULL);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_629 = L_628;
RuntimeObject* L_630 = Box(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var, &L_629);
V_3 = L_630;
goto IL_16eb_1;
}
IL_0d56_1:
{
RuntimeObject* L_631 = V_0;
RuntimeObject* L_632;
L_632 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_633;
L_633 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_631, L_632, NULL);
RuntimeObject* L_634 = V_1;
RuntimeObject* L_635;
L_635 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
double L_636;
L_636 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_634, L_635, NULL);
double L_637 = ((double)il2cpp_codegen_multiply(L_633, L_636));
RuntimeObject* L_638 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_637);
V_3 = L_638;
goto IL_16eb_1;
}
IL_0d7a_1:
{
RuntimeObject* L_639 = V_0;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_640;
L_640 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_639, NULL);
RuntimeObject* L_641 = V_1;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_642;
L_642 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_641, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_643;
L_643 = SqlDouble_op_Multiply_m69986FF82179F26ED935C058CC714D5B2B490AE0(L_640, L_642, NULL);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_644 = L_643;
RuntimeObject* L_645 = Box(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var, &L_644);
V_3 = L_645;
goto IL_16eb_1;
}
IL_0d96_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_0d9e_1:
{
int32_t L_646 = V_2;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_646, 5)))
{
case 0:
{
goto IL_0e87_1;
}
case 1:
{
goto IL_0e37_1;
}
case 2:
{
goto IL_0ebb_1;
}
case 3:
{
goto IL_0f0b_1;
}
case 4:
{
goto IL_0f3f_1;
}
case 5:
{
goto IL_0f7f_1;
}
case 6:
{
goto IL_0fc7_1;
}
case 7:
{
goto IL_0fa3_1;
}
case 8:
{
goto IL_104b_1;
}
case 9:
{
goto IL_10a7_1;
}
case 10:
{
goto IL_1007_1;
}
case 11:
{
goto IL_10eb_1;
}
case 12:
{
goto IL_10eb_1;
}
case 13:
{
goto IL_10eb_1;
}
case 14:
{
goto IL_10eb_1;
}
case 15:
{
goto IL_10eb_1;
}
case 16:
{
goto IL_10eb_1;
}
case 17:
{
goto IL_10eb_1;
}
case 18:
{
goto IL_10eb_1;
}
case 19:
{
goto IL_10eb_1;
}
case 20:
{
goto IL_10eb_1;
}
case 21:
{
goto IL_10eb_1;
}
case 22:
{
goto IL_10eb_1;
}
case 23:
{
goto IL_0e6b_1;
}
case 24:
{
goto IL_10eb_1;
}
case 25:
{
goto IL_10eb_1;
}
case 26:
{
goto IL_10eb_1;
}
case 27:
{
goto IL_102f_1;
}
case 28:
{
goto IL_10cf_1;
}
case 29:
{
goto IL_10eb_1;
}
case 30:
{
goto IL_0eef_1;
}
case 31:
{
goto IL_0f63_1;
}
case 32:
{
goto IL_0feb_1;
}
case 33:
{
goto IL_108b_1;
}
case 34:
{
goto IL_106f_1;
}
}
}
{
goto IL_10eb_1;
}
IL_0e37_1:
{
RuntimeObject* L_647 = V_0;
RuntimeObject* L_648;
L_648 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint8_t L_649;
L_649 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_647, L_648, NULL);
RuntimeObject* L_650 = V_1;
RuntimeObject* L_651;
L_651 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_652;
L_652 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_650, L_651, NULL);
int32_t L_653 = ((int32_t)((int32_t)L_649/(int32_t)L_652));
RuntimeObject* L_654 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_653);
RuntimeObject* L_655;
L_655 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint8_t L_656;
L_656 = Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD(L_654, L_655, NULL);
uint8_t L_657 = L_656;
RuntimeObject* L_658 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_657);
V_3 = L_658;
goto IL_16eb_1;
}
IL_0e6b_1:
{
RuntimeObject* L_659 = V_0;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_660;
L_660 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_659, NULL);
RuntimeObject* L_661 = V_1;
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_662;
L_662 = SqlConvert_ConvertToSqlByte_m71E8B3D04B27100DC59AA1CD89255651F12BD63A(L_661, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_663;
L_663 = SqlByte_op_Division_m792F09E1D3AC4B822BF967D5C5326E1AF01B9C3E(L_660, L_662, NULL);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_664 = L_663;
RuntimeObject* L_665 = Box(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var, &L_664);
V_3 = L_665;
goto IL_16eb_1;
}
IL_0e87_1:
{
RuntimeObject* L_666 = V_0;
RuntimeObject* L_667;
L_667 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int8_t L_668;
L_668 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_666, L_667, NULL);
RuntimeObject* L_669 = V_1;
RuntimeObject* L_670;
L_670 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_671;
L_671 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_669, L_670, NULL);
int32_t L_672 = ((int32_t)((int32_t)L_668/(int32_t)L_671));
RuntimeObject* L_673 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_672);
RuntimeObject* L_674;
L_674 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int8_t L_675;
L_675 = Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80(L_673, L_674, NULL);
int8_t L_676 = L_675;
RuntimeObject* L_677 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_676);
V_3 = L_677;
goto IL_16eb_1;
}
IL_0ebb_1:
{
RuntimeObject* L_678 = V_0;
RuntimeObject* L_679;
L_679 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int16_t L_680;
L_680 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_678, L_679, NULL);
RuntimeObject* L_681 = V_1;
RuntimeObject* L_682;
L_682 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_683;
L_683 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_681, L_682, NULL);
int32_t L_684 = ((int32_t)((int32_t)L_680/(int32_t)L_683));
RuntimeObject* L_685 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_684);
RuntimeObject* L_686;
L_686 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int16_t L_687;
L_687 = Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77(L_685, L_686, NULL);
int16_t L_688 = L_687;
RuntimeObject* L_689 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_688);
V_3 = L_689;
goto IL_16eb_1;
}
IL_0eef_1:
{
RuntimeObject* L_690 = V_0;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_691;
L_691 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_690, NULL);
RuntimeObject* L_692 = V_1;
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_693;
L_693 = SqlConvert_ConvertToSqlInt16_m8E04AA408C7A06C020381F3B6EA304C176AEDDFC(L_692, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_694;
L_694 = SqlInt16_op_Division_m7E7B3EC464A6F69735847E2D7984E505EC61D708(L_691, L_693, NULL);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_695 = L_694;
RuntimeObject* L_696 = Box(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var, &L_695);
V_3 = L_696;
goto IL_16eb_1;
}
IL_0f0b_1:
{
RuntimeObject* L_697 = V_0;
RuntimeObject* L_698;
L_698 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint16_t L_699;
L_699 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_697, L_698, NULL);
RuntimeObject* L_700 = V_1;
RuntimeObject* L_701;
L_701 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_702;
L_702 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_700, L_701, NULL);
int32_t L_703 = ((int32_t)((int32_t)L_699/(int32_t)L_702));
RuntimeObject* L_704 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_703);
RuntimeObject* L_705;
L_705 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint16_t L_706;
L_706 = Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2(L_704, L_705, NULL);
uint16_t L_707 = L_706;
RuntimeObject* L_708 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_707);
V_3 = L_708;
goto IL_16eb_1;
}
IL_0f3f_1:
{
RuntimeObject* L_709 = V_0;
RuntimeObject* L_710;
L_710 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_711;
L_711 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_709, L_710, NULL);
RuntimeObject* L_712 = V_1;
RuntimeObject* L_713;
L_713 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int32_t L_714;
L_714 = Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9(L_712, L_713, NULL);
int32_t L_715 = ((int32_t)(L_711/L_714));
RuntimeObject* L_716 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_715);
V_3 = L_716;
goto IL_16eb_1;
}
IL_0f63_1:
{
RuntimeObject* L_717 = V_0;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_718;
L_718 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_717, NULL);
RuntimeObject* L_719 = V_1;
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_720;
L_720 = SqlConvert_ConvertToSqlInt32_mD51CF690174220827109EEBCCE0A8CD232D2A048(L_719, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_721;
L_721 = SqlInt32_op_Division_mE4F12E6A97170C49B4E39104F178B7225C73F99C(L_718, L_720, NULL);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_722 = L_721;
RuntimeObject* L_723 = Box(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var, &L_722);
V_3 = L_723;
goto IL_16eb_1;
}
IL_0f7f_1:
{
RuntimeObject* L_724 = V_0;
RuntimeObject* L_725;
L_725 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_726;
L_726 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_724, L_725, NULL);
RuntimeObject* L_727 = V_1;
RuntimeObject* L_728;
L_728 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint32_t L_729;
L_729 = Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB(L_727, L_728, NULL);
uint32_t L_730 = ((uint32_t)((int32_t)((uint32_t)(int32_t)L_726/(uint32_t)(int32_t)L_729)));
RuntimeObject* L_731 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_730);
V_3 = L_731;
goto IL_16eb_1;
}
IL_0fa3_1:
{
RuntimeObject* L_732 = V_0;
RuntimeObject* L_733;
L_733 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_734;
L_734 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_732, L_733, NULL);
RuntimeObject* L_735 = V_1;
RuntimeObject* L_736;
L_736 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint64_t L_737;
L_737 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_735, L_736, NULL);
uint64_t L_738 = ((uint64_t)((int64_t)((uint64_t)(int64_t)L_734/(uint64_t)(int64_t)L_737)));
RuntimeObject* L_739 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_738);
V_3 = L_739;
goto IL_16eb_1;
}
IL_0fc7_1:
{
RuntimeObject* L_740 = V_0;
RuntimeObject* L_741;
L_741 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_742;
L_742 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_740, L_741, NULL);
RuntimeObject* L_743 = V_1;
RuntimeObject* L_744;
L_744 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int64_t L_745;
L_745 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_743, L_744, NULL);
int64_t L_746 = ((int64_t)(L_742/L_745));
RuntimeObject* L_747 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_746);
V_3 = L_747;
goto IL_16eb_1;
}
IL_0feb_1:
{
RuntimeObject* L_748 = V_0;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_749;
L_749 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_748, NULL);
RuntimeObject* L_750 = V_1;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_751;
L_751 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_750, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_752;
L_752 = SqlInt64_op_Division_m8AA85EF43A99EC1366C534ABE0923728428DA9AB(L_749, L_751, NULL);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_753 = L_752;
RuntimeObject* L_754 = Box(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var, &L_753);
V_3 = L_754;
goto IL_16eb_1;
}
IL_1007_1:
{
RuntimeObject* L_755 = V_0;
RuntimeObject* L_756;
L_756 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_757;
L_757 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_755, L_756, NULL);
RuntimeObject* L_758 = V_1;
RuntimeObject* L_759;
L_759 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_760;
L_760 = Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA(L_758, L_759, NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_761;
L_761 = Decimal_op_Division_mC679B917681D7B7D7791E0017A6A51AA76C1C72A(L_757, L_760, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_762 = L_761;
RuntimeObject* L_763 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_762);
V_3 = L_763;
goto IL_16eb_1;
}
IL_102f_1:
{
RuntimeObject* L_764 = V_0;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_765;
L_765 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_764, NULL);
RuntimeObject* L_766 = V_1;
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_767;
L_767 = SqlConvert_ConvertToSqlDecimal_m7A0B8E169811021554F0449A541A2AE25B4543EA(L_766, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_768;
L_768 = SqlDecimal_op_Division_m77953E11503A2F5632149F528CDA129C71A15BF5(L_765, L_767, NULL);
SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406 L_769 = L_768;
RuntimeObject* L_770 = Box(SqlDecimal_t7A833A6D857AB79C4B2E4011CB728AEC6954D406_il2cpp_TypeInfo_var, &L_769);
V_3 = L_770;
goto IL_16eb_1;
}
IL_104b_1:
{
RuntimeObject* L_771 = V_0;
RuntimeObject* L_772;
L_772 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_773;
L_773 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_771, L_772, NULL);
RuntimeObject* L_774 = V_1;
RuntimeObject* L_775;
L_775 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
float L_776;
L_776 = Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C(L_774, L_775, NULL);
float L_777 = ((float)(L_773/L_776));
RuntimeObject* L_778 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_777);
V_3 = L_778;
goto IL_16eb_1;
}
IL_106f_1:
{
RuntimeObject* L_779 = V_0;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_780;
L_780 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_779, NULL);
RuntimeObject* L_781 = V_1;
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_782;
L_782 = SqlConvert_ConvertToSqlSingle_m3BDA968843455A9B463DA911F296FF6E1441FCBA(L_781, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_783;
L_783 = SqlSingle_op_Division_mC69BC83D4283BD7833BD108DC6F2FEEA746FCE1E(L_780, L_782, NULL);
SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767 L_784 = L_783;
RuntimeObject* L_785 = Box(SqlSingle_tE807CFF8CCE4E77475D51223A37ADC73BC205767_il2cpp_TypeInfo_var, &L_784);
V_3 = L_785;
goto IL_16eb_1;
}
IL_108b_1:
{
RuntimeObject* L_786 = V_0;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_787;
L_787 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_786, NULL);
RuntimeObject* L_788 = V_1;
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_789;
L_789 = SqlConvert_ConvertToSqlMoney_m5F88C983B83E56DEFCF0CE8BCE72F32BF1834463(L_788, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_790;
L_790 = SqlMoney_op_Division_mF918781C11C28F111186D981F54258CCA6E79163(L_787, L_789, NULL);
SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB L_791 = L_790;
RuntimeObject* L_792 = Box(SqlMoney_t88BD587F422EA297502BC57B18010762C03531BB_il2cpp_TypeInfo_var, &L_791);
V_3 = L_792;
goto IL_16eb_1;
}
IL_10a7_1:
{
RuntimeObject* L_793 = V_1;
RuntimeObject* L_794;
L_794 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_795;
L_795 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_793, L_794, NULL);
V_16 = L_795;
RuntimeObject* L_796 = V_0;
RuntimeObject* L_797;
L_797 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
double L_798;
L_798 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_796, L_797, NULL);
double L_799 = V_16;
double L_800 = ((double)(L_798/L_799));
RuntimeObject* L_801 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_800);
V_3 = L_801;
goto IL_16eb_1;
}
IL_10cf_1:
{
RuntimeObject* L_802 = V_0;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_803;
L_803 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_802, NULL);
RuntimeObject* L_804 = V_1;
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_805;
L_805 = SqlConvert_ConvertToSqlDouble_m6139F4242C0D151681E8BC8CED9A42F0543C874A(L_804, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_806;
L_806 = SqlDouble_op_Division_m51E5D52F6CB9CCA2CB08B7BA32D1A50FE54DE30F(L_803, L_805, NULL);
SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98 L_807 = L_806;
RuntimeObject* L_808 = Box(SqlDouble_t028838C05B8C2E359848BEDB40C41CCCAA11CC98_il2cpp_TypeInfo_var, &L_807);
V_3 = L_808;
goto IL_16eb_1;
}
IL_10eb_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_10f3_1:
{
RuntimeObject* L_809 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_810 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_809) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_810)))
{
goto IL_1123_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_811 = ___left1;
NullCheck(L_811);
bool L_812;
L_812 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_811);
if (!L_812)
{
goto IL_110b_1;
}
}
{
RuntimeObject* L_813 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_814;
L_814 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_813, NULL);
if (L_814)
{
goto IL_1123_1;
}
}
IL_110b_1:
{
RuntimeObject* L_815 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_816 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_815) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_816)))
{
goto IL_1123_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_817 = ___right2;
NullCheck(L_817);
bool L_818;
L_818 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_817);
if (!L_818)
{
goto IL_112f_1;
}
}
{
RuntimeObject* L_819 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_820;
L_820 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_819, NULL);
if (!L_820)
{
goto IL_112f_1;
}
}
IL_1123_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_821 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_821;
goto IL_1713;
}
IL_112f_1:
{
RuntimeObject* L_822 = V_0;
RuntimeObject* L_823 = V_1;
int32_t L_824 = V_2;
int32_t L_825;
L_825 = BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638(__this, L_822, L_823, L_824, 7, NULL);
bool L_826 = ((bool)((((int32_t)L_825) == ((int32_t)0))? 1 : 0));
RuntimeObject* L_827 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_826);
V_17 = L_827;
goto IL_1713;
}
IL_1148_1:
{
RuntimeObject* L_828 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_829 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_828) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_829)))
{
goto IL_1178_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_830 = ___left1;
NullCheck(L_830);
bool L_831;
L_831 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_830);
if (!L_831)
{
goto IL_1160_1;
}
}
{
RuntimeObject* L_832 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_833;
L_833 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_832, NULL);
if (L_833)
{
goto IL_1178_1;
}
}
IL_1160_1:
{
RuntimeObject* L_834 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_835 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_834) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_835)))
{
goto IL_1178_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_836 = ___right2;
NullCheck(L_836);
bool L_837;
L_837 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_836);
if (!L_837)
{
goto IL_1184_1;
}
}
{
RuntimeObject* L_838 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_839;
L_839 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_838, NULL);
if (!L_839)
{
goto IL_1184_1;
}
}
IL_1178_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_840 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_840;
goto IL_1713;
}
IL_1184_1:
{
RuntimeObject* L_841 = V_0;
RuntimeObject* L_842 = V_1;
int32_t L_843 = V_2;
int32_t L_844 = ___op0;
int32_t L_845;
L_845 = BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638(__this, L_841, L_842, L_843, L_844, NULL);
bool L_846 = ((bool)((((int32_t)0) < ((int32_t)L_845))? 1 : 0));
RuntimeObject* L_847 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_846);
V_17 = L_847;
goto IL_1713;
}
IL_119d_1:
{
RuntimeObject* L_848 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_849 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_848) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_849)))
{
goto IL_11cd_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_850 = ___left1;
NullCheck(L_850);
bool L_851;
L_851 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_850);
if (!L_851)
{
goto IL_11b5_1;
}
}
{
RuntimeObject* L_852 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_853;
L_853 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_852, NULL);
if (L_853)
{
goto IL_11cd_1;
}
}
IL_11b5_1:
{
RuntimeObject* L_854 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_855 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_854) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_855)))
{
goto IL_11cd_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_856 = ___right2;
NullCheck(L_856);
bool L_857;
L_857 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_856);
if (!L_857)
{
goto IL_11d9_1;
}
}
{
RuntimeObject* L_858 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_859;
L_859 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_858, NULL);
if (!L_859)
{
goto IL_11d9_1;
}
}
IL_11cd_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_860 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_860;
goto IL_1713;
}
IL_11d9_1:
{
RuntimeObject* L_861 = V_0;
RuntimeObject* L_862 = V_1;
int32_t L_863 = V_2;
int32_t L_864 = ___op0;
int32_t L_865;
L_865 = BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638(__this, L_861, L_862, L_863, L_864, NULL);
bool L_866 = ((bool)((((int32_t)0) > ((int32_t)L_865))? 1 : 0));
RuntimeObject* L_867 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_866);
V_17 = L_867;
goto IL_1713;
}
IL_11f2_1:
{
RuntimeObject* L_868 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_869 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_868) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_869)))
{
goto IL_1222_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_870 = ___left1;
NullCheck(L_870);
bool L_871;
L_871 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_870);
if (!L_871)
{
goto IL_120a_1;
}
}
{
RuntimeObject* L_872 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_873;
L_873 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_872, NULL);
if (L_873)
{
goto IL_1222_1;
}
}
IL_120a_1:
{
RuntimeObject* L_874 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_875 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_874) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_875)))
{
goto IL_1222_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_876 = ___right2;
NullCheck(L_876);
bool L_877;
L_877 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_876);
if (!L_877)
{
goto IL_122e_1;
}
}
{
RuntimeObject* L_878 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_879;
L_879 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_878, NULL);
if (!L_879)
{
goto IL_122e_1;
}
}
IL_1222_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_880 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_880;
goto IL_1713;
}
IL_122e_1:
{
RuntimeObject* L_881 = V_0;
RuntimeObject* L_882 = V_1;
int32_t L_883 = V_2;
int32_t L_884 = ___op0;
int32_t L_885;
L_885 = BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638(__this, L_881, L_882, L_883, L_884, NULL);
bool L_886 = ((bool)((((int32_t)((((int32_t)0) > ((int32_t)L_885))? 1 : 0)) == ((int32_t)0))? 1 : 0));
RuntimeObject* L_887 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_886);
V_17 = L_887;
goto IL_1713;
}
IL_124a_1:
{
RuntimeObject* L_888 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_889 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_888) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_889)))
{
goto IL_127a_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_890 = ___left1;
NullCheck(L_890);
bool L_891;
L_891 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_890);
if (!L_891)
{
goto IL_1262_1;
}
}
{
RuntimeObject* L_892 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_893;
L_893 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_892, NULL);
if (L_893)
{
goto IL_127a_1;
}
}
IL_1262_1:
{
RuntimeObject* L_894 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_895 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_894) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_895)))
{
goto IL_127a_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_896 = ___right2;
NullCheck(L_896);
bool L_897;
L_897 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_896);
if (!L_897)
{
goto IL_1286_1;
}
}
{
RuntimeObject* L_898 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_899;
L_899 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_898, NULL);
if (!L_899)
{
goto IL_1286_1;
}
}
IL_127a_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_900 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_900;
goto IL_1713;
}
IL_1286_1:
{
RuntimeObject* L_901 = V_0;
RuntimeObject* L_902 = V_1;
int32_t L_903 = V_2;
int32_t L_904 = ___op0;
int32_t L_905;
L_905 = BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638(__this, L_901, L_902, L_903, L_904, NULL);
bool L_906 = ((bool)((((int32_t)((((int32_t)0) < ((int32_t)L_905))? 1 : 0)) == ((int32_t)0))? 1 : 0));
RuntimeObject* L_907 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_906);
V_17 = L_907;
goto IL_1713;
}
IL_12a2_1:
{
RuntimeObject* L_908 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_909 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_908) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_909)))
{
goto IL_12d2_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_910 = ___left1;
NullCheck(L_910);
bool L_911;
L_911 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_910);
if (!L_911)
{
goto IL_12ba_1;
}
}
{
RuntimeObject* L_912 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_913;
L_913 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_912, NULL);
if (L_913)
{
goto IL_12d2_1;
}
}
IL_12ba_1:
{
RuntimeObject* L_914 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_915 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_914) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_915)))
{
goto IL_12d2_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_916 = ___right2;
NullCheck(L_916);
bool L_917;
L_917 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_916);
if (!L_917)
{
goto IL_12de_1;
}
}
{
RuntimeObject* L_918 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_919;
L_919 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_918, NULL);
if (!L_919)
{
goto IL_12de_1;
}
}
IL_12d2_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_920 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_920;
goto IL_1713;
}
IL_12de_1:
{
RuntimeObject* L_921 = V_0;
RuntimeObject* L_922 = V_1;
int32_t L_923 = V_2;
int32_t L_924 = ___op0;
int32_t L_925;
L_925 = BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638(__this, L_921, L_922, L_923, L_924, NULL);
bool L_926 = ((bool)((!(((uint32_t)L_925) <= ((uint32_t)0)))? 1 : 0));
RuntimeObject* L_927 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_926);
V_17 = L_927;
goto IL_1713;
}
IL_12f7_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_928 = ___left1;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_929 = ___row3;
int32_t L_930 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_931 = ___recordNos5;
RuntimeObject* L_932;
L_932 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_928, L_929, L_930, L_931, NULL);
V_0 = L_932;
RuntimeObject* L_933 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_934 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_933) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_934)))
{
goto IL_131c_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_935 = ___left1;
NullCheck(L_935);
bool L_936;
L_936 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_935);
if (!L_936)
{
goto IL_1329_1;
}
}
{
RuntimeObject* L_937 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_938;
L_938 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_937, NULL);
if (!L_938)
{
goto IL_1329_1;
}
}
IL_131c_1:
{
bool L_939 = ((bool)1);
RuntimeObject* L_940 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_939);
V_17 = L_940;
goto IL_1713;
}
IL_1329_1:
{
bool L_941 = ((bool)0);
RuntimeObject* L_942 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_941);
V_17 = L_942;
goto IL_1713;
}
IL_1336_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_943 = ___left1;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_944 = ___row3;
int32_t L_945 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_946 = ___recordNos5;
RuntimeObject* L_947;
L_947 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_943, L_944, L_945, L_946, NULL);
V_0 = L_947;
RuntimeObject* L_948 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_949 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_948) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_949)))
{
goto IL_135b_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_950 = ___left1;
NullCheck(L_950);
bool L_951;
L_951 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_950);
if (!L_951)
{
goto IL_1368_1;
}
}
{
RuntimeObject* L_952 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_953;
L_953 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_952, NULL);
if (!L_953)
{
goto IL_1368_1;
}
}
IL_135b_1:
{
bool L_954 = ((bool)0);
RuntimeObject* L_955 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_954);
V_17 = L_955;
goto IL_1713;
}
IL_1368_1:
{
bool L_956 = ((bool)1);
RuntimeObject* L_957 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_956);
V_17 = L_957;
goto IL_1713;
}
IL_1375_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_958 = ___left1;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_959 = ___row3;
int32_t L_960 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_961 = ___recordNos5;
RuntimeObject* L_962;
L_962 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_958, L_959, L_960, L_961, NULL);
V_0 = L_962;
RuntimeObject* L_963 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_964 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_963) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_964)))
{
goto IL_139a_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_965 = ___left1;
NullCheck(L_965);
bool L_966;
L_966 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_965);
if (!L_966)
{
goto IL_13a6_1;
}
}
{
RuntimeObject* L_967 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_968;
L_968 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_967, NULL);
if (!L_968)
{
goto IL_13a6_1;
}
}
IL_139a_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_969 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_969;
goto IL_1713;
}
IL_13a6_1:
{
RuntimeObject* L_970 = V_0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_970, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_13cb_1;
}
}
{
RuntimeObject* L_971 = V_0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_971, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var)))
{
goto IL_13cb_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_972 = ___right2;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_973 = ___row3;
int32_t L_974 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_975 = ___recordNos5;
RuntimeObject* L_976;
L_976 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_972, L_973, L_974, L_975, NULL);
V_1 = L_976;
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_13cb_1:
{
RuntimeObject* L_977 = V_0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_977, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_13e7_1;
}
}
{
RuntimeObject* L_978 = V_0;
if (((*(bool*)((bool*)(bool*)UnBox(L_978, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))))
{
goto IL_1404_1;
}
}
{
bool L_979 = ((bool)0);
RuntimeObject* L_980 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_979);
V_3 = L_980;
goto IL_16eb_1;
}
IL_13e7_1:
{
RuntimeObject* L_981 = V_0;
V_18 = ((*(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)((SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)UnBox(L_981, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var))));
bool L_982;
L_982 = SqlBoolean_get_IsFalse_m646CE988D5B3AD60DC1496527F008088B74C44E2((&V_18), NULL);
if (!L_982)
{
goto IL_1404_1;
}
}
{
bool L_983 = ((bool)0);
RuntimeObject* L_984 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_983);
V_3 = L_984;
goto IL_16eb_1;
}
IL_1404_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_985 = ___right2;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_986 = ___row3;
int32_t L_987 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_988 = ___recordNos5;
RuntimeObject* L_989;
L_989 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_985, L_986, L_987, L_988, NULL);
V_1 = L_989;
RuntimeObject* L_990 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_991 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_990) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_991)))
{
goto IL_1429_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_992 = ___right2;
NullCheck(L_992);
bool L_993;
L_993 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_992);
if (!L_993)
{
goto IL_1435_1;
}
}
{
RuntimeObject* L_994 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_995;
L_995 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_994, NULL);
if (!L_995)
{
goto IL_1435_1;
}
}
IL_1429_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_996 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_996;
goto IL_1713;
}
IL_1435_1:
{
RuntimeObject* L_997 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_997, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_144d_1;
}
}
{
RuntimeObject* L_998 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_998, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var)))
{
goto IL_144d_1;
}
}
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_144d_1:
{
RuntimeObject* L_999 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_999, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_1466_1;
}
}
{
RuntimeObject* L_1000 = V_1;
bool L_1001 = ((*(bool*)((bool*)(bool*)UnBox(L_1000, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))));
RuntimeObject* L_1002 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1001);
V_3 = L_1002;
goto IL_16eb_1;
}
IL_1466_1:
{
RuntimeObject* L_1003 = V_1;
V_18 = ((*(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)((SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)UnBox(L_1003, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var))));
bool L_1004;
L_1004 = SqlBoolean_get_IsTrue_mD2491FECA6D8BEC7F00C0071C6299187B28B52D4((&V_18), NULL);
bool L_1005 = L_1004;
RuntimeObject* L_1006 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1005);
V_3 = L_1006;
goto IL_16eb_1;
}
IL_1480_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1007 = ___left1;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1008 = ___row3;
int32_t L_1009 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1010 = ___recordNos5;
RuntimeObject* L_1011;
L_1011 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_1007, L_1008, L_1009, L_1010, NULL);
V_0 = L_1011;
RuntimeObject* L_1012 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1013 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_1012) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_1013)))
{
goto IL_14d6_1;
}
}
{
RuntimeObject* L_1014 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1015;
L_1015 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_1014, NULL);
if (L_1015)
{
goto IL_14d6_1;
}
}
{
RuntimeObject* L_1016 = V_0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1016, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_14c2_1;
}
}
{
RuntimeObject* L_1017 = V_0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1017, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var)))
{
goto IL_14c2_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1018 = ___right2;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1019 = ___row3;
int32_t L_1020 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1021 = ___recordNos5;
RuntimeObject* L_1022;
L_1022 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_1018, L_1019, L_1020, L_1021, NULL);
V_1 = L_1022;
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_14c2_1:
{
RuntimeObject* L_1023 = V_0;
if (!((*(bool*)((bool*)(bool*)UnBox(L_1023, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))))
{
goto IL_14d6_1;
}
}
{
bool L_1024 = ((bool)1);
RuntimeObject* L_1025 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1024);
V_3 = L_1025;
goto IL_16eb_1;
}
IL_14d6_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1026 = ___right2;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1027 = ___row3;
int32_t L_1028 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1029 = ___recordNos5;
RuntimeObject* L_1030;
L_1030 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_1026, L_1027, L_1028, L_1029, NULL);
V_1 = L_1030;
RuntimeObject* L_1031 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1032 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_1031) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_1032)))
{
goto IL_14f3_1;
}
}
{
RuntimeObject* L_1033 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1034;
L_1034 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_1033, NULL);
if (!L_1034)
{
goto IL_14fb_1;
}
}
IL_14f3_1:
{
RuntimeObject* L_1035 = V_0;
V_17 = L_1035;
goto IL_1713;
}
IL_14fb_1:
{
RuntimeObject* L_1036 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1037 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_1036) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_1037)))
{
goto IL_150b_1;
}
}
{
RuntimeObject* L_1038 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1039;
L_1039 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_1038, NULL);
if (!L_1039)
{
goto IL_1513_1;
}
}
IL_150b_1:
{
RuntimeObject* L_1040 = V_1;
V_17 = L_1040;
goto IL_1713;
}
IL_1513_1:
{
RuntimeObject* L_1041 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1041, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_152b_1;
}
}
{
RuntimeObject* L_1042 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1042, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var)))
{
goto IL_152b_1;
}
}
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_152b_1:
{
RuntimeObject* L_1043 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1043, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_1544_1;
}
}
{
RuntimeObject* L_1044 = V_1;
V_18 = ((*(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)((SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)UnBox(L_1044, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var))));
bool L_1045;
L_1045 = SqlBoolean_get_IsTrue_mD2491FECA6D8BEC7F00C0071C6299187B28B52D4((&V_18), NULL);
G_B239_0 = L_1045;
goto IL_154a_1;
}
IL_1544_1:
{
RuntimeObject* L_1046 = V_1;
G_B239_0 = ((*(bool*)((bool*)(bool*)UnBox(L_1046, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))));
}
IL_154a_1:
{
bool L_1047 = G_B239_0;
RuntimeObject* L_1048 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1047);
V_3 = L_1048;
goto IL_16eb_1;
}
IL_1555_1:
{
int32_t L_1049 = V_2;
bool L_1050;
L_1050 = ExpressionNode_IsIntegerSql_m0EE6794F4908616B07067568323FB3B00AC0E5F7(L_1049, NULL);
if (!L_1050)
{
goto IL_162d_1;
}
}
{
int32_t L_1051 = V_2;
if ((!(((uint32_t)L_1051) == ((uint32_t)((int32_t)12)))))
{
goto IL_1589_1;
}
}
{
RuntimeObject* L_1052 = V_0;
RuntimeObject* L_1053;
L_1053 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_1054;
L_1054 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_1052, L_1053, NULL);
RuntimeObject* L_1055 = V_1;
RuntimeObject* L_1056;
L_1056 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
uint64_t L_1057;
L_1057 = Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C(L_1055, L_1056, NULL);
uint64_t L_1058 = ((uint64_t)((int64_t)((uint64_t)(int64_t)L_1054%(uint64_t)(int64_t)L_1057)));
RuntimeObject* L_1059 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_1058);
V_3 = L_1059;
goto IL_16eb_1;
}
IL_1589_1:
{
int32_t L_1060 = V_2;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1061;
L_1061 = DataStorage_IsSqlType_m7FA180A7030104A7D160A660F70CD1F028181B7A(L_1060, NULL);
if (!L_1061)
{
goto IL_15f6_1;
}
}
{
RuntimeObject* L_1062 = V_0;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_1063;
L_1063 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_1062, NULL);
RuntimeObject* L_1064 = V_1;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_1065;
L_1065 = SqlConvert_ConvertToSqlInt64_m539F2B7A311B0D8291324168E8295822EB153548(L_1064, NULL);
il2cpp_codegen_runtime_class_init_inline(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var);
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_1066;
L_1066 = SqlInt64_op_Modulus_mE336884EE7AD2EA0C2045D5091D040BA50FA95A1(L_1063, L_1065, NULL);
V_19 = L_1066;
int32_t L_1067 = V_2;
if ((!(((uint32_t)L_1067) == ((uint32_t)((int32_t)36)))))
{
goto IL_15bb_1;
}
}
{
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_1068;
L_1068 = SqlInt64_ToSqlInt32_m6B96CA26421E6C524936B54B5FDFBFD82552FDD9((&V_19), NULL);
SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152 L_1069 = L_1068;
RuntimeObject* L_1070 = Box(SqlInt32_t50DA35BC9FD9C46AA933DCF8195B2EE92064D152_il2cpp_TypeInfo_var, &L_1069);
V_3 = L_1070;
goto IL_16eb_1;
}
IL_15bb_1:
{
int32_t L_1071 = V_2;
if ((!(((uint32_t)L_1071) == ((uint32_t)((int32_t)35)))))
{
goto IL_15d2_1;
}
}
{
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_1072;
L_1072 = SqlInt64_ToSqlInt16_m0EFCFBEB8CC9A1EA6EC4DE6C0A6533F381900E5D((&V_19), NULL);
SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B L_1073 = L_1072;
RuntimeObject* L_1074 = Box(SqlInt16_t30ED9856D3373398B6005B34D664C64EE224260B_il2cpp_TypeInfo_var, &L_1073);
V_3 = L_1074;
goto IL_16eb_1;
}
IL_15d2_1:
{
int32_t L_1075 = V_2;
if ((!(((uint32_t)L_1075) == ((uint32_t)((int32_t)28)))))
{
goto IL_15e9_1;
}
}
{
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_1076;
L_1076 = SqlInt64_ToSqlByte_m2D4E319395763521491F1558976FE7B2697552EC((&V_19), NULL);
SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46 L_1077 = L_1076;
RuntimeObject* L_1078 = Box(SqlByte_t39089DB566BD0047D5ED18807B145019FB0F0B46_il2cpp_TypeInfo_var, &L_1077);
V_3 = L_1078;
goto IL_16eb_1;
}
IL_15e9_1:
{
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_1079 = V_19;
SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272 L_1080 = L_1079;
RuntimeObject* L_1081 = Box(SqlInt64_t6F2A4BE192CBAA1059DDAB0D02FEDF4EDEAD6272_il2cpp_TypeInfo_var, &L_1080);
V_3 = L_1081;
goto IL_16eb_1;
}
IL_15f6_1:
{
RuntimeObject* L_1082 = V_0;
RuntimeObject* L_1083;
L_1083 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_1084;
L_1084 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_1082, L_1083, NULL);
RuntimeObject* L_1085 = V_1;
RuntimeObject* L_1086;
L_1086 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
int64_t L_1087;
L_1087 = Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F(L_1085, L_1086, NULL);
int64_t L_1088 = ((int64_t)(L_1084%L_1087));
RuntimeObject* L_1089 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_1088);
V_3 = L_1089;
RuntimeObject* L_1090 = V_3;
int32_t L_1091 = V_2;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
Type_t* L_1092;
L_1092 = DataStorage_GetTypeStorage_m5A306926BA627DDCB35E52FC45C4BEE832B95C94(L_1091, NULL);
RuntimeObject* L_1093;
L_1093 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
RuntimeObject* L_1094;
L_1094 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_1090, L_1092, L_1093, NULL);
V_3 = L_1094;
goto IL_16eb_1;
}
IL_162d_1:
{
V_4 = (bool)1;
goto IL_16eb_1;
}
IL_1635_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1095 = ___right2;
if (((FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)IsInstSealed((RuntimeObject*)L_1095, FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var)))
{
goto IL_1643_1;
}
}
{
Exception_t* L_1096;
L_1096 = ExprException_InWithoutParentheses_m6F0C42FC24BDCD1C519E67C24C985867E42488D8(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1096, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var)));
}
IL_1643_1:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1097 = ___left1;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1098 = ___row3;
int32_t L_1099 = ___version4;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1100 = ___recordNos5;
RuntimeObject* L_1101;
L_1101 = BinaryNode_Eval_m4881CCEE7270BD3F588606006754627C8A92C002(L_1097, L_1098, L_1099, L_1100, NULL);
V_0 = L_1101;
RuntimeObject* L_1102 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1103 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_1102) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_1103)))
{
goto IL_1668_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1104 = ___left1;
NullCheck(L_1104);
bool L_1105;
L_1105 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_1104);
if (!L_1105)
{
goto IL_1674_1;
}
}
{
RuntimeObject* L_1106 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1107;
L_1107 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_1106, NULL);
if (!L_1107)
{
goto IL_1674_1;
}
}
IL_1668_1:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1108 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
V_17 = L_1108;
goto IL_1713;
}
IL_1674_1:
{
bool L_1109 = ((bool)0);
RuntimeObject* L_1110 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1109);
V_3 = L_1110;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1111 = ___right2;
V_11 = ((FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)CastclassSealed((RuntimeObject*)L_1111, FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var));
V_20 = 0;
goto IL_16d7_1;
}
IL_1688_1:
{
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_1112 = V_11;
NullCheck(L_1112);
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* L_1113 = L_1112->____arguments_4;
int32_t L_1114 = V_20;
NullCheck(L_1113);
int32_t L_1115 = L_1114;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1116 = (L_1113)->GetAt(static_cast<il2cpp_array_size_t>(L_1115));
NullCheck(L_1116);
RuntimeObject* L_1117;
L_1117 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.Data.ExpressionNode::Eval() */, L_1116);
V_1 = L_1117;
RuntimeObject* L_1118 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_1119 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_1118) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_1119)))
{
goto IL_16d1_1;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1120 = ___right2;
NullCheck(L_1120);
bool L_1121;
L_1121 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_1120);
if (!L_1121)
{
goto IL_16b0_1;
}
}
{
RuntimeObject* L_1122 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1123;
L_1123 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_1122, NULL);
if (L_1123)
{
goto IL_16d1_1;
}
}
IL_16b0_1:
{
RuntimeObject* L_1124 = V_0;
NullCheck(L_1124);
Type_t* L_1125;
L_1125 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1124, NULL);
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
int32_t L_1126;
L_1126 = DataStorage_GetStorageType_mDD0D0A90F39994863F9A9E0551C47076D10A5E33(L_1125, NULL);
V_2 = L_1126;
RuntimeObject* L_1127 = V_0;
RuntimeObject* L_1128 = V_1;
int32_t L_1129 = V_2;
int32_t L_1130;
L_1130 = BinaryNode_BinaryCompare_mCAB71C98550B5CF2243E19B4BE45C35DC40AD638(__this, L_1127, L_1128, L_1129, 7, NULL);
if (L_1130)
{
goto IL_16d1_1;
}
}
{
bool L_1131 = ((bool)1);
RuntimeObject* L_1132 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1131);
V_3 = L_1132;
goto IL_16eb_1;
}
IL_16d1_1:
{
int32_t L_1133 = V_20;
V_20 = ((int32_t)il2cpp_codegen_add(L_1133, 1));
}
IL_16d7_1:
{
int32_t L_1134 = V_20;
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_1135 = V_11;
NullCheck(L_1135);
int32_t L_1136 = L_1135->____argumentCount_3;
if ((((int32_t)L_1134) < ((int32_t)L_1136)))
{
goto IL_1688_1;
}
}
{
goto IL_16eb_1;
}
IL_16e4_1:
{
int32_t L_1137 = ___op0;
Exception_t* L_1138;
L_1138 = ExprException_UnsupportedOperator_mDDE1F2196F2A6017BDF518D9C6B6732E5907F61C(L_1137, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1138, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var)));
}
IL_16eb_1:
{
goto IL_16fa;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_16ed;
}
throw e;
}
CATCH_16ed:
{// begin catch(System.OverflowException)
int32_t L_1139 = V_2;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var)));
Type_t* L_1140;
L_1140 = DataStorage_GetTypeStorage_m5A306926BA627DDCB35E52FC45C4BEE832B95C94(L_1139, NULL);
Exception_t* L_1141;
L_1141 = ExprException_Overflow_mAB67268A020C9ED649CA22A38A176A13600FFE66(L_1140, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1141, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_EvalBinaryOp_mEF0AB3DCA9FD29DED2B5132FDBC028C066E01C4C_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_16fa:
{
bool L_1142 = V_4;
if (!L_1142)
{
goto IL_1711;
}
}
{
int32_t L_1143 = ___op0;
RuntimeObject* L_1144 = V_0;
NullCheck(L_1144);
Type_t* L_1145;
L_1145 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1144, NULL);
RuntimeObject* L_1146 = V_1;
NullCheck(L_1146);
Type_t* L_1147;
L_1147 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1146, NULL);
BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3(__this, L_1143, L_1145, L_1147, NULL);
}
IL_1711:
{
RuntimeObject* L_1148 = V_3;
return L_1148;
}
IL_1713:
{
RuntimeObject* L_1149 = V_17;
return L_1149;
}
}
// System.Data.BinaryNode/DataTypePrecedence System.Data.BinaryNode::GetPrecedence(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_GetPrecedence_m65BBA749EA82CAB7C8516A24C5D1AE4BD2816CDF (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___storageType0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___storageType0;
switch (L_0)
{
case 0:
{
goto IL_0103;
}
case 1:
{
goto IL_0103;
}
case 2:
{
goto IL_0103;
}
case 3:
{
goto IL_00ac;
}
case 4:
{
goto IL_00af;
}
case 5:
{
goto IL_00b2;
}
case 6:
{
goto IL_00b4;
}
case 7:
{
goto IL_00b6;
}
case 8:
{
goto IL_00b8;
}
case 9:
{
goto IL_00ba;
}
case 10:
{
goto IL_00bc;
}
case 11:
{
goto IL_00bf;
}
case 12:
{
goto IL_00c2;
}
case 13:
{
goto IL_00c5;
}
case 14:
{
goto IL_00c8;
}
case 15:
{
goto IL_00cb;
}
case 16:
{
goto IL_00ce;
}
case 17:
{
goto IL_00d4;
}
case 18:
{
goto IL_00d7;
}
case 19:
{
goto IL_0103;
}
case 20:
{
goto IL_0103;
}
case 21:
{
goto IL_0103;
}
case 22:
{
goto IL_0103;
}
case 23:
{
goto IL_00d1;
}
case 24:
{
goto IL_0103;
}
case 25:
{
goto IL_0103;
}
case 26:
{
goto IL_00da;
}
case 27:
{
goto IL_00dd;
}
case 28:
{
goto IL_00df;
}
case 29:
{
goto IL_00e1;
}
case 30:
{
goto IL_00e4;
}
case 31:
{
goto IL_00e7;
}
case 32:
{
goto IL_00ea;
}
case 33:
{
goto IL_00ed;
}
case 34:
{
goto IL_00f0;
}
case 35:
{
goto IL_00f3;
}
case 36:
{
goto IL_00f5;
}
case 37:
{
goto IL_00f7;
}
case 38:
{
goto IL_00fa;
}
case 39:
{
goto IL_00fd;
}
case 40:
{
goto IL_0100;
}
}
}
{
goto IL_0103;
}
IL_00ac:
{
return (int32_t)(((int32_t)-2));
}
IL_00af:
{
return (int32_t)(((int32_t)-8));
}
IL_00b2:
{
return (int32_t)(1);
}
IL_00b4:
{
return (int32_t)(3);
}
IL_00b6:
{
return (int32_t)(4);
}
IL_00b8:
{
return (int32_t)(6);
}
IL_00ba:
{
return (int32_t)(7);
}
IL_00bc:
{
return (int32_t)(((int32_t)9));
}
IL_00bf:
{
return (int32_t)(((int32_t)10));
}
IL_00c2:
{
return (int32_t)(((int32_t)12));
}
IL_00c5:
{
return (int32_t)(((int32_t)16));
}
IL_00c8:
{
return (int32_t)(((int32_t)18));
}
IL_00cb:
{
return (int32_t)(((int32_t)14));
}
IL_00ce:
{
return (int32_t)(((int32_t)23));
}
IL_00d1:
{
return (int32_t)(((int32_t)24));
}
IL_00d4:
{
return (int32_t)(((int32_t)20));
}
IL_00d7:
{
return (int32_t)(((int32_t)-5));
}
IL_00da:
{
return (int32_t)(((int32_t)-10));
}
IL_00dd:
{
return (int32_t)((-1));
}
IL_00df:
{
return (int32_t)(2);
}
IL_00e1:
{
return (int32_t)(((int32_t)-9));
}
IL_00e4:
{
return (int32_t)(((int32_t)-7));
}
IL_00e7:
{
return (int32_t)(((int32_t)25));
}
IL_00ea:
{
return (int32_t)(((int32_t)15));
}
IL_00ed:
{
return (int32_t)(((int32_t)19));
}
IL_00f0:
{
return (int32_t)(((int32_t)-3));
}
IL_00f3:
{
return (int32_t)(5);
}
IL_00f5:
{
return (int32_t)(8);
}
IL_00f7:
{
return (int32_t)(((int32_t)11));
}
IL_00fa:
{
return (int32_t)(((int32_t)13));
}
IL_00fd:
{
return (int32_t)(((int32_t)17));
}
IL_0100:
{
return (int32_t)(((int32_t)-4));
}
IL_0103:
{
return (int32_t)(0);
}
}
// System.Data.Common.StorageType System.Data.BinaryNode::GetPrecedenceType(System.Data.BinaryNode/DataTypePrecedence)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_GetPrecedenceType_mF0E281ED98DE6DE48F5CA72474907E4B23A3C0EF (int32_t ___code0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___code0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)-10))))
{
case 0:
{
goto IL_00e9;
}
case 1:
{
goto IL_0099;
}
case 2:
{
goto IL_00bd;
}
case 3:
{
goto IL_0099;
}
case 4:
{
goto IL_0099;
}
case 5:
{
goto IL_00ba;
}
case 6:
{
goto IL_00e3;
}
case 7:
{
goto IL_00e6;
}
case 8:
{
goto IL_00b8;
}
case 9:
{
goto IL_00e0;
}
case 10:
{
goto IL_0099;
}
case 11:
{
goto IL_009b;
}
case 12:
{
goto IL_00dd;
}
case 13:
{
goto IL_009d;
}
case 14:
{
goto IL_009f;
}
case 15:
{
goto IL_00da;
}
case 16:
{
goto IL_00a1;
}
case 17:
{
goto IL_00a3;
}
case 18:
{
goto IL_00d7;
}
case 19:
{
goto IL_00a6;
}
case 20:
{
goto IL_00a9;
}
case 21:
{
goto IL_00d4;
}
case 22:
{
goto IL_00ac;
}
case 23:
{
goto IL_00ec;
}
case 24:
{
goto IL_00af;
}
case 25:
{
goto IL_00d1;
}
case 26:
{
goto IL_00b2;
}
case 27:
{
goto IL_00ce;
}
case 28:
{
goto IL_00b5;
}
case 29:
{
goto IL_00cb;
}
case 30:
{
goto IL_00c5;
}
case 31:
{
goto IL_0099;
}
case 32:
{
goto IL_0099;
}
case 33:
{
goto IL_00c2;
}
case 34:
{
goto IL_00bf;
}
case 35:
{
goto IL_00c8;
}
}
}
IL_0099:
{
return (int32_t)(0);
}
IL_009b:
{
return (int32_t)(5);
}
IL_009d:
{
return (int32_t)(6);
}
IL_009f:
{
return (int32_t)(7);
}
IL_00a1:
{
return (int32_t)(8);
}
IL_00a3:
{
return (int32_t)(((int32_t)9));
}
IL_00a6:
{
return (int32_t)(((int32_t)10));
}
IL_00a9:
{
return (int32_t)(((int32_t)11));
}
IL_00ac:
{
return (int32_t)(((int32_t)12));
}
IL_00af:
{
return (int32_t)(((int32_t)15));
}
IL_00b2:
{
return (int32_t)(((int32_t)13));
}
IL_00b5:
{
return (int32_t)(((int32_t)14));
}
IL_00b8:
{
return (int32_t)(3);
}
IL_00ba:
{
return (int32_t)(((int32_t)18));
}
IL_00bd:
{
return (int32_t)(4);
}
IL_00bf:
{
return (int32_t)(((int32_t)23));
}
IL_00c2:
{
return (int32_t)(((int32_t)16));
}
IL_00c5:
{
return (int32_t)(((int32_t)17));
}
IL_00c8:
{
return (int32_t)(((int32_t)31));
}
IL_00cb:
{
return (int32_t)(((int32_t)33));
}
IL_00ce:
{
return (int32_t)(((int32_t)39));
}
IL_00d1:
{
return (int32_t)(((int32_t)32));
}
IL_00d4:
{
return (int32_t)(((int32_t)37));
}
IL_00d7:
{
return (int32_t)(((int32_t)36));
}
IL_00da:
{
return (int32_t)(((int32_t)35));
}
IL_00dd:
{
return (int32_t)(((int32_t)28));
}
IL_00e0:
{
return (int32_t)(((int32_t)27));
}
IL_00e3:
{
return (int32_t)(((int32_t)40));
}
IL_00e6:
{
return (int32_t)(((int32_t)34));
}
IL_00e9:
{
return (int32_t)(((int32_t)26));
}
IL_00ec:
{
return (int32_t)(((int32_t)38));
}
}
// System.Boolean System.Data.BinaryNode::IsMixed(System.Data.Common.StorageType,System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_IsMixed_m8B553DF8B2442443F8C2D7651BF973B51C3F5A08 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___left0;
bool L_1;
L_1 = ExpressionNode_IsSigned_m1B1A282CD60788B91EE3599C186D01D4D9CDDEA4(L_0, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
int32_t L_2 = ___right1;
bool L_3;
L_3 = ExpressionNode_IsUnsigned_m0BA16D62CCA17994F4CFEA9414649C87B702E087(L_2, NULL);
if (L_3)
{
goto IL_0021;
}
}
IL_0010:
{
int32_t L_4 = ___left0;
bool L_5;
L_5 = ExpressionNode_IsUnsigned_m0BA16D62CCA17994F4CFEA9414649C87B702E087(L_4, NULL);
if (!L_5)
{
goto IL_001f;
}
}
{
int32_t L_6 = ___right1;
bool L_7;
L_7 = ExpressionNode_IsSigned_m1B1A282CD60788B91EE3599C186D01D4D9CDDEA4(L_6, NULL);
return L_7;
}
IL_001f:
{
return (bool)0;
}
IL_0021:
{
return (bool)1;
}
}
// System.Boolean System.Data.BinaryNode::IsMixedSql(System.Data.Common.StorageType,System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BinaryNode_IsMixedSql_m5BD92C7FD873A6BCF34D310C0DEAC20283D796D5 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___left0;
bool L_1;
L_1 = ExpressionNode_IsSignedSql_m089041F1A529C92B8B4085DCD5D2DA69960A538E(L_0, NULL);
if (!L_1)
{
goto IL_0010;
}
}
{
int32_t L_2 = ___right1;
bool L_3;
L_3 = ExpressionNode_IsUnsignedSql_mCE00B1EEFB206A53E6A0347520823CF2F31AB83E(L_2, NULL);
if (L_3)
{
goto IL_0021;
}
}
IL_0010:
{
int32_t L_4 = ___left0;
bool L_5;
L_5 = ExpressionNode_IsUnsignedSql_mCE00B1EEFB206A53E6A0347520823CF2F31AB83E(L_4, NULL);
if (!L_5)
{
goto IL_001f;
}
}
{
int32_t L_6 = ___right1;
bool L_7;
L_7 = ExpressionNode_IsSignedSql_m089041F1A529C92B8B4085DCD5D2DA69960A538E(L_6, NULL);
return L_7;
}
IL_001f:
{
return (bool)0;
}
IL_0021:
{
return (bool)1;
}
}
// System.Data.Common.StorageType System.Data.BinaryNode::ResultType(System.Data.Common.StorageType,System.Data.Common.StorageType,System.Boolean,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_ResultType_m4416FF1A35FF5D93EA117D614D280D808AED1FDF (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, bool ___lc2, bool ___rc3, int32_t ___op4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___left0;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)19)))))
{
goto IL_0015;
}
}
{
int32_t L_1 = ___right1;
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)19)))))
{
goto IL_0015;
}
}
{
int32_t L_2 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_3;
L_3 = Operators_IsRelational_m7116295DD1C027F2A0C9A0D2CC5479F95FEA34CC(L_2, NULL);
if (!L_3)
{
goto IL_0015;
}
}
{
int32_t L_4 = ___left0;
return L_4;
}
IL_0015:
{
int32_t L_5 = ___left0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)18)))))
{
goto IL_002a;
}
}
{
int32_t L_6 = ___right1;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)19)))))
{
goto IL_002a;
}
}
{
int32_t L_7 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_8;
L_8 = Operators_IsRelational_m7116295DD1C027F2A0C9A0D2CC5479F95FEA34CC(L_7, NULL);
if (!L_8)
{
goto IL_002a;
}
}
{
int32_t L_9 = ___left0;
return L_9;
}
IL_002a:
{
int32_t L_10 = ___left0;
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)19)))))
{
goto IL_003f;
}
}
{
int32_t L_11 = ___right1;
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)18)))))
{
goto IL_003f;
}
}
{
int32_t L_12 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_13;
L_13 = Operators_IsRelational_m7116295DD1C027F2A0C9A0D2CC5479F95FEA34CC(L_12, NULL);
if (!L_13)
{
goto IL_003f;
}
}
{
int32_t L_14 = ___right1;
return L_14;
}
IL_003f:
{
int32_t L_15 = ___left0;
int32_t L_16;
L_16 = BinaryNode_GetPrecedence_m65BBA749EA82CAB7C8516A24C5D1AE4BD2816CDF(__this, L_15, NULL);
V_0 = L_16;
int32_t L_17 = V_0;
if (L_17)
{
goto IL_004c;
}
}
{
return (int32_t)(0);
}
IL_004c:
{
int32_t L_18 = ___right1;
int32_t L_19;
L_19 = BinaryNode_GetPrecedence_m65BBA749EA82CAB7C8516A24C5D1AE4BD2816CDF(__this, L_18, NULL);
V_1 = L_19;
int32_t L_20 = V_1;
if (L_20)
{
goto IL_0059;
}
}
{
return (int32_t)(0);
}
IL_0059:
{
int32_t L_21 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_22;
L_22 = Operators_IsLogical_mC7EA14EDD06955E2ABD850F45F899DE2DFFD710A(L_21, NULL);
if (!L_22)
{
goto IL_006e;
}
}
{
int32_t L_23 = ___left0;
if ((!(((uint32_t)L_23) == ((uint32_t)3))))
{
goto IL_006c;
}
}
{
int32_t L_24 = ___right1;
if ((!(((uint32_t)L_24) == ((uint32_t)3))))
{
goto IL_006c;
}
}
{
return (int32_t)(3);
}
IL_006c:
{
return (int32_t)(0);
}
IL_006e:
{
int32_t L_25 = ___left0;
if ((((int32_t)L_25) == ((int32_t)((int32_t)23))))
{
goto IL_0078;
}
}
{
int32_t L_26 = ___right1;
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)23)))))
{
goto IL_0090;
}
}
IL_0078:
{
int32_t L_27 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_28;
L_28 = Operators_IsRelational_m7116295DD1C027F2A0C9A0D2CC5479F95FEA34CC(L_27, NULL);
if (!L_28)
{
goto IL_008e;
}
}
{
int32_t L_29 = ___left0;
if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)23)))))
{
goto IL_008e;
}
}
{
int32_t L_30 = ___right1;
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)23)))))
{
goto IL_008e;
}
}
{
return (int32_t)(((int32_t)23));
}
IL_008e:
{
return (int32_t)(0);
}
IL_0090:
{
int32_t L_31 = ___op4;
if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)15)))))
{
goto IL_00a3;
}
}
{
int32_t L_32 = ___left0;
if ((((int32_t)L_32) == ((int32_t)((int32_t)18))))
{
goto IL_00a0;
}
}
{
int32_t L_33 = ___right1;
if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)18)))))
{
goto IL_00a3;
}
}
IL_00a0:
{
return (int32_t)(((int32_t)18));
}
IL_00a3:
{
int32_t L_34 = V_0;
int32_t L_35 = V_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_36;
L_36 = Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5(L_34, L_35, NULL);
V_2 = L_36;
int32_t L_37 = V_2;
int32_t L_38;
L_38 = BinaryNode_GetPrecedenceType_mF0E281ED98DE6DE48F5CA72474907E4B23A3C0EF(L_37, NULL);
V_3 = L_38;
int32_t L_39 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_40;
L_40 = Operators_IsArithmetical_m71C6168B1905D259A01720658B36D82588A919F9(L_39, NULL);
if (!L_40)
{
goto IL_00d8;
}
}
{
int32_t L_41 = V_3;
if ((((int32_t)L_41) == ((int32_t)((int32_t)18))))
{
goto IL_00d8;
}
}
{
int32_t L_42 = V_3;
if ((((int32_t)L_42) == ((int32_t)4)))
{
goto IL_00d8;
}
}
{
int32_t L_43 = ___left0;
bool L_44;
L_44 = ExpressionNode_IsNumeric_m0AF895B1516C02207B519E56D8A3B3505DAD4509(L_43, NULL);
if (L_44)
{
goto IL_00ce;
}
}
{
return (int32_t)(0);
}
IL_00ce:
{
int32_t L_45 = ___right1;
bool L_46;
L_46 = ExpressionNode_IsNumeric_m0AF895B1516C02207B519E56D8A3B3505DAD4509(L_45, NULL);
if (L_46)
{
goto IL_00d8;
}
}
{
return (int32_t)(0);
}
IL_00d8:
{
int32_t L_47 = ___op4;
if ((!(((uint32_t)L_47) == ((uint32_t)((int32_t)18)))))
{
goto IL_00e9;
}
}
{
int32_t L_48 = V_3;
bool L_49;
L_49 = ExpressionNode_IsInteger_m90642E7E2762B628C16A1491F906A829726939CD(L_48, NULL);
if (!L_49)
{
goto IL_00e9;
}
}
{
return (int32_t)(((int32_t)14));
}
IL_00e9:
{
int32_t L_50 = ___left0;
int32_t L_51 = ___right1;
bool L_52;
L_52 = BinaryNode_IsMixed_m8B553DF8B2442443F8C2D7651BF973B51C3F5A08(__this, L_50, L_51, NULL);
if (!L_52)
{
goto IL_0133;
}
}
{
bool L_53 = ___lc2;
if (!L_53)
{
goto IL_00fc;
}
}
{
bool L_54 = ___rc3;
if (L_54)
{
goto IL_00fc;
}
}
{
int32_t L_55 = ___right1;
return L_55;
}
IL_00fc:
{
bool L_56 = ___lc2;
bool L_57 = ___rc3;
if (!((int32_t)(((((int32_t)L_56) == ((int32_t)0))? 1 : 0)&(int32_t)L_57)))
{
goto IL_0107;
}
}
{
int32_t L_58 = ___left0;
return L_58;
}
IL_0107:
{
int32_t L_59 = V_3;
bool L_60;
L_60 = ExpressionNode_IsUnsigned_m0BA16D62CCA17994F4CFEA9414649C87B702E087(L_59, NULL);
if (!L_60)
{
goto IL_0133;
}
}
{
int32_t L_61 = V_2;
if ((((int32_t)L_61) >= ((int32_t)((int32_t)12))))
{
goto IL_011f;
}
}
{
int32_t L_62 = V_2;
int32_t L_63;
L_63 = BinaryNode_GetPrecedenceType_mF0E281ED98DE6DE48F5CA72474907E4B23A3C0EF(((int32_t)il2cpp_codegen_add((int32_t)L_62, 1)), NULL);
V_3 = L_63;
goto IL_0133;
}
IL_011f:
{
int32_t L_64 = ___op4;
int32_t L_65 = ___left0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var)));
Type_t* L_66;
L_66 = DataStorage_GetTypeStorage_m5A306926BA627DDCB35E52FC45C4BEE832B95C94(L_65, NULL);
int32_t L_67 = ___right1;
Type_t* L_68;
L_68 = DataStorage_GetTypeStorage_m5A306926BA627DDCB35E52FC45C4BEE832B95C94(L_67, NULL);
Exception_t* L_69;
L_69 = ExprException_AmbiguousBinop_mBC5E5273397B7D6542B1FFCDE4F34EB70B267624(L_64, L_66, L_68, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_ResultType_m4416FF1A35FF5D93EA117D614D280D808AED1FDF_RuntimeMethod_var)));
}
IL_0133:
{
int32_t L_70 = V_3;
return L_70;
}
}
// System.Data.Common.StorageType System.Data.BinaryNode::ResultSqlType(System.Data.Common.StorageType,System.Data.Common.StorageType,System.Boolean,System.Boolean,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_ResultSqlType_m50B087B54D7AD34C3771B7F9994A9AA825AF9EC6 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___left0, int32_t ___right1, bool ___lc2, bool ___rc3, int32_t ___op4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___left0;
int32_t L_1;
L_1 = BinaryNode_GetPrecedence_m65BBA749EA82CAB7C8516A24C5D1AE4BD2816CDF(__this, L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if (L_2)
{
goto IL_000d;
}
}
{
return (int32_t)(0);
}
IL_000d:
{
int32_t L_3 = ___right1;
int32_t L_4;
L_4 = BinaryNode_GetPrecedence_m65BBA749EA82CAB7C8516A24C5D1AE4BD2816CDF(__this, L_3, NULL);
V_1 = L_4;
int32_t L_5 = V_1;
if (L_5)
{
goto IL_001a;
}
}
{
return (int32_t)(0);
}
IL_001a:
{
int32_t L_6 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Operators_IsLogical_mC7EA14EDD06955E2ABD850F45F899DE2DFFD710A(L_6, NULL);
if (!L_7)
{
goto IL_0044;
}
}
{
int32_t L_8 = ___left0;
if ((((int32_t)L_8) == ((int32_t)3)))
{
goto IL_002c;
}
}
{
int32_t L_9 = ___left0;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)27)))))
{
goto IL_0035;
}
}
IL_002c:
{
int32_t L_10 = ___right1;
if ((((int32_t)L_10) == ((int32_t)3)))
{
goto IL_0037;
}
}
{
int32_t L_11 = ___right1;
if ((((int32_t)L_11) == ((int32_t)((int32_t)27))))
{
goto IL_0037;
}
}
IL_0035:
{
return (int32_t)(0);
}
IL_0037:
{
int32_t L_12 = ___left0;
if ((!(((uint32_t)L_12) == ((uint32_t)3))))
{
goto IL_0041;
}
}
{
int32_t L_13 = ___right1;
if ((!(((uint32_t)L_13) == ((uint32_t)3))))
{
goto IL_0041;
}
}
{
return (int32_t)(3);
}
IL_0041:
{
return (int32_t)(((int32_t)27));
}
IL_0044:
{
int32_t L_14 = ___op4;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)15)))))
{
goto IL_0064;
}
}
{
int32_t L_15 = ___left0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)40))))
{
goto IL_0054;
}
}
{
int32_t L_16 = ___right1;
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)40)))))
{
goto IL_0057;
}
}
IL_0054:
{
return (int32_t)(((int32_t)40));
}
IL_0057:
{
int32_t L_17 = ___left0;
if ((((int32_t)L_17) == ((int32_t)((int32_t)18))))
{
goto IL_0061;
}
}
{
int32_t L_18 = ___right1;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)18)))))
{
goto IL_0064;
}
}
IL_0061:
{
return (int32_t)(((int32_t)18));
}
IL_0064:
{
int32_t L_19 = ___left0;
if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)26)))))
{
goto IL_006e;
}
}
{
int32_t L_20 = ___right1;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)26)))))
{
goto IL_0078;
}
}
IL_006e:
{
int32_t L_21 = ___left0;
if ((((int32_t)L_21) == ((int32_t)((int32_t)26))))
{
goto IL_007a;
}
}
{
int32_t L_22 = ___right1;
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)26)))))
{
goto IL_007a;
}
}
IL_0078:
{
return (int32_t)(0);
}
IL_007a:
{
int32_t L_23 = ___left0;
if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)34)))))
{
goto IL_0084;
}
}
{
int32_t L_24 = ___right1;
if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)34)))))
{
goto IL_008e;
}
}
IL_0084:
{
int32_t L_25 = ___left0;
if ((((int32_t)L_25) == ((int32_t)((int32_t)34))))
{
goto IL_0090;
}
}
{
int32_t L_26 = ___right1;
if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)34)))))
{
goto IL_0090;
}
}
IL_008e:
{
return (int32_t)(0);
}
IL_0090:
{
int32_t L_27 = V_0;
if ((((int32_t)L_27) <= ((int32_t)((int32_t)19))))
{
goto IL_009c;
}
}
{
int32_t L_28 = V_1;
if ((((int32_t)L_28) >= ((int32_t)((int32_t)20))))
{
goto IL_009c;
}
}
{
return (int32_t)(0);
}
IL_009c:
{
int32_t L_29 = V_0;
if ((((int32_t)L_29) >= ((int32_t)((int32_t)20))))
{
goto IL_00a8;
}
}
{
int32_t L_30 = V_1;
if ((((int32_t)L_30) <= ((int32_t)((int32_t)19))))
{
goto IL_00a8;
}
}
{
return (int32_t)(0);
}
IL_00a8:
{
int32_t L_31 = V_0;
if ((((int32_t)L_31) <= ((int32_t)((int32_t)19))))
{
goto IL_00d6;
}
}
{
int32_t L_32 = ___op4;
if ((((int32_t)L_32) == ((int32_t)((int32_t)15))))
{
goto IL_00b9;
}
}
{
int32_t L_33 = ___op4;
if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)16)))))
{
goto IL_00c9;
}
}
IL_00b9:
{
int32_t L_34 = ___left0;
if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)17)))))
{
goto IL_00c0;
}
}
{
int32_t L_35 = ___right1;
return L_35;
}
IL_00c0:
{
int32_t L_36 = ___right1;
if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)17)))))
{
goto IL_00c7;
}
}
{
int32_t L_37 = ___left0;
return L_37;
}
IL_00c7:
{
return (int32_t)(0);
}
IL_00c9:
{
int32_t L_38 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_39;
L_39 = Operators_IsRelational_m7116295DD1C027F2A0C9A0D2CC5479F95FEA34CC(L_38, NULL);
if (L_39)
{
goto IL_00d4;
}
}
{
return (int32_t)(0);
}
IL_00d4:
{
int32_t L_40 = ___left0;
return L_40;
}
IL_00d6:
{
int32_t L_41 = V_0;
int32_t L_42 = V_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_43;
L_43 = Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5(L_41, L_42, NULL);
V_2 = L_43;
int32_t L_44 = V_2;
int32_t L_45;
L_45 = BinaryNode_GetPrecedenceType_mF0E281ED98DE6DE48F5CA72474907E4B23A3C0EF(L_44, NULL);
V_3 = L_45;
int32_t L_46 = V_2;
int32_t L_47;
L_47 = BinaryNode_SqlResultType_m84124C95CED89134F3BE8D02DC9DD8DDC79C45E6(__this, L_46, NULL);
int32_t L_48;
L_48 = BinaryNode_GetPrecedenceType_mF0E281ED98DE6DE48F5CA72474907E4B23A3C0EF(L_47, NULL);
V_3 = L_48;
int32_t L_49 = ___op4;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
bool L_50;
L_50 = Operators_IsArithmetical_m71C6168B1905D259A01720658B36D82588A919F9(L_49, NULL);
if (!L_50)
{
goto IL_011d;
}
}
{
int32_t L_51 = V_3;
if ((((int32_t)L_51) == ((int32_t)((int32_t)18))))
{
goto IL_011d;
}
}
{
int32_t L_52 = V_3;
if ((((int32_t)L_52) == ((int32_t)4)))
{
goto IL_011d;
}
}
{
int32_t L_53 = V_3;
if ((((int32_t)L_53) == ((int32_t)((int32_t)40))))
{
goto IL_011d;
}
}
{
int32_t L_54 = ___left0;
bool L_55;
L_55 = ExpressionNode_IsNumericSql_m4680B485888010B3286D385239051FE292099A52(L_54, NULL);
if (L_55)
{
goto IL_0113;
}
}
{
return (int32_t)(0);
}
IL_0113:
{
int32_t L_56 = ___right1;
bool L_57;
L_57 = ExpressionNode_IsNumericSql_m4680B485888010B3286D385239051FE292099A52(L_56, NULL);
if (L_57)
{
goto IL_011d;
}
}
{
return (int32_t)(0);
}
IL_011d:
{
int32_t L_58 = ___op4;
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)18)))))
{
goto IL_012e;
}
}
{
int32_t L_59 = V_3;
bool L_60;
L_60 = ExpressionNode_IsIntegerSql_m0EE6794F4908616B07067568323FB3B00AC0E5F7(L_59, NULL);
if (!L_60)
{
goto IL_012e;
}
}
{
return (int32_t)(((int32_t)33));
}
IL_012e:
{
int32_t L_61 = V_3;
if ((!(((uint32_t)L_61) == ((uint32_t)((int32_t)38)))))
{
goto IL_0140;
}
}
{
int32_t L_62 = ___left0;
if ((((int32_t)L_62) == ((int32_t)((int32_t)38))))
{
goto IL_0140;
}
}
{
int32_t L_63 = ___right1;
if ((((int32_t)L_63) == ((int32_t)((int32_t)38))))
{
goto IL_0140;
}
}
{
V_3 = ((int32_t)32);
}
IL_0140:
{
int32_t L_64 = ___left0;
int32_t L_65 = ___right1;
bool L_66;
L_66 = BinaryNode_IsMixedSql_m5BD92C7FD873A6BCF34D310C0DEAC20283D796D5(__this, L_64, L_65, NULL);
if (!L_66)
{
goto IL_0176;
}
}
{
int32_t L_67 = V_3;
bool L_68;
L_68 = ExpressionNode_IsUnsignedSql_mCE00B1EEFB206A53E6A0347520823CF2F31AB83E(L_67, NULL);
if (!L_68)
{
goto IL_0176;
}
}
{
int32_t L_69 = V_2;
if ((((int32_t)L_69) >= ((int32_t)((int32_t)12))))
{
goto IL_0162;
}
}
{
int32_t L_70 = V_2;
int32_t L_71;
L_71 = BinaryNode_GetPrecedenceType_mF0E281ED98DE6DE48F5CA72474907E4B23A3C0EF(((int32_t)il2cpp_codegen_add((int32_t)L_70, 1)), NULL);
V_3 = L_71;
goto IL_0176;
}
IL_0162:
{
int32_t L_72 = ___op4;
int32_t L_73 = ___left0;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var)));
Type_t* L_74;
L_74 = DataStorage_GetTypeStorage_m5A306926BA627DDCB35E52FC45C4BEE832B95C94(L_73, NULL);
int32_t L_75 = ___right1;
Type_t* L_76;
L_76 = DataStorage_GetTypeStorage_m5A306926BA627DDCB35E52FC45C4BEE832B95C94(L_75, NULL);
Exception_t* L_77;
L_77 = ExprException_AmbiguousBinop_mBC5E5273397B7D6542B1FFCDE4F34EB70B267624(L_72, L_74, L_76, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_77, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinaryNode_ResultSqlType_m50B087B54D7AD34C3771B7F9994A9AA825AF9EC6_RuntimeMethod_var)));
}
IL_0176:
{
int32_t L_78 = V_3;
return L_78;
}
}
// System.Int32 System.Data.BinaryNode::SqlResultType(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryNode_SqlResultType_m84124C95CED89134F3BE8D02DC9DD8DDC79C45E6 (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* __this, int32_t ___typeCode0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___typeCode0;
switch (((int32_t)il2cpp_codegen_subtract(L_0, ((int32_t)-8))))
{
case 0:
{
goto IL_00a2;
}
case 1:
{
goto IL_00a5;
}
case 2:
{
goto IL_00a5;
}
case 3:
{
goto IL_009f;
}
case 4:
{
goto IL_00a5;
}
case 5:
{
goto IL_00a5;
}
case 6:
{
goto IL_009d;
}
case 7:
{
goto IL_00a5;
}
case 8:
{
goto IL_00a5;
}
case 9:
{
goto IL_009b;
}
case 10:
{
goto IL_00a5;
}
case 11:
{
goto IL_0099;
}
case 12:
{
goto IL_0099;
}
case 13:
{
goto IL_00a5;
}
case 14:
{
goto IL_0097;
}
case 15:
{
goto IL_0097;
}
case 16:
{
goto IL_00a5;
}
case 17:
{
goto IL_0094;
}
case 18:
{
goto IL_0094;
}
case 19:
{
goto IL_00a5;
}
case 20:
{
goto IL_0091;
}
case 21:
{
goto IL_00a5;
}
case 22:
{
goto IL_008e;
}
case 23:
{
goto IL_00a5;
}
case 24:
{
goto IL_008b;
}
case 25:
{
goto IL_00a5;
}
case 26:
{
goto IL_0088;
}
case 27:
{
goto IL_00a5;
}
case 28:
{
goto IL_0085;
}
}
}
{
int32_t L_1 = ___typeCode0;
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)23)))))
{
goto IL_00a5;
}
}
{
return ((int32_t)24);
}
IL_0085:
{
return ((int32_t)21);
}
IL_0088:
{
return ((int32_t)19);
}
IL_008b:
{
return ((int32_t)17);
}
IL_008e:
{
return ((int32_t)15);
}
IL_0091:
{
return ((int32_t)13);
}
IL_0094:
{
return ((int32_t)11);
}
IL_0097:
{
return 8;
}
IL_0099:
{
return 5;
}
IL_009b:
{
return 2;
}
IL_009d:
{
return (-1);
}
IL_009f:
{
return ((int32_t)-4);
}
IL_00a2:
{
return ((int32_t)-7);
}
IL_00a5:
{
int32_t L_2 = ___typeCode0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#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.Data.LikeNode::.ctor(System.Data.DataTable,System.Int32,System.Data.ExpressionNode,System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LikeNode__ctor_m561044C413AA34C6A24589CE3E120AB65344E05A (LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___op1, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___left2, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___right3, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
int32_t L_1 = ___op1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = ___left2;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_3 = ___right3;
BinaryNode__ctor_m7514FA08A8C7CD203362FCAB2FE53C855B9BDFC7(__this, L_0, L_1, L_2, L_3, NULL);
return;
}
}
// System.Object System.Data.LikeNode::Eval(System.Data.DataRow,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LikeNode_Eval_m21C4A33AE2B6D34015255BCE2B05423484D0EBFC (LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, int32_t ___version1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
String_t* V_2 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_3 = NULL;
String_t* V_4 = NULL;
String_t* V_5 = NULL;
String_t* V_6 = NULL;
SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D V_7;
memset((&V_7), 0, sizeof(V_7));
String_t* V_8 = NULL;
int32_t V_9 = 0;
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = ((BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434*)__this)->____left_2;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1 = ___row0;
int32_t L_2 = ___version1;
NullCheck(L_0);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker2< RuntimeObject*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, int32_t >::Invoke(7 /* System.Object System.Data.ExpressionNode::Eval(System.Data.DataRow,System.Data.DataRowVersion) */, L_0, L_1, L_2);
V_1 = L_3;
RuntimeObject* L_4 = V_1;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_5 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_5)))
{
goto IL_002b;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_6 = ((BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434*)__this)->____left_2;
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean System.Data.ExpressionNode::get_IsSqlColumn() */, L_6);
if (!L_7)
{
goto IL_0031;
}
}
{
RuntimeObject* L_8 = V_1;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_9;
L_9 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_8, NULL);
if (!L_9)
{
goto IL_0031;
}
}
IL_002b:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_10 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
return L_10;
}
IL_0031:
{
String_t* L_11 = __this->____pattern_5;
if (L_11)
{
goto IL_00c6;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_12 = ((BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434*)__this)->____right_3;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_13 = ___row0;
int32_t L_14 = ___version1;
NullCheck(L_12);
RuntimeObject* L_15;
L_15 = VirtualFuncInvoker2< RuntimeObject*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, int32_t >::Invoke(7 /* System.Object System.Data.ExpressionNode::Eval(System.Data.DataRow,System.Data.DataRowVersion) */, L_12, L_13, L_14);
V_0 = L_15;
RuntimeObject* L_16 = V_0;
if (((String_t*)IsInstSealed((RuntimeObject*)L_16, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0072;
}
}
{
RuntimeObject* L_17 = V_0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_17, SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var)))
{
goto IL_0072;
}
}
{
int32_t L_18 = ((BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434*)__this)->____op_1;
RuntimeObject* L_19 = V_1;
NullCheck(L_19);
Type_t* L_20;
L_20 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_19, NULL);
RuntimeObject* L_21 = V_0;
NullCheck(L_21);
Type_t* L_22;
L_22 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_21, NULL);
BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3(__this, L_18, L_20, L_22, NULL);
}
IL_0072:
{
RuntimeObject* L_23 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_24 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((((RuntimeObject*)(RuntimeObject*)L_23) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_24)))
{
goto IL_0082;
}
}
{
RuntimeObject* L_25 = V_0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_26;
L_26 = DataStorage_IsObjectSqlNull_mCF040C14F49034A1045BC0546CC468BEA89814A5(L_25, NULL);
if (!L_26)
{
goto IL_0088;
}
}
IL_0082:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_27 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
return L_27;
}
IL_0088:
{
RuntimeObject* L_28 = V_0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_30;
L_30 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_29, NULL);
RuntimeObject* L_31;
L_31 = ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF(__this, NULL);
RuntimeObject* L_32;
L_32 = SqlConvert_ChangeType2_m5D7A9B02FD7B211AC60BDF6A4973CFCE367C400F(L_28, ((int32_t)18), L_30, L_31, NULL);
V_6 = ((String_t*)CastclassSealed((RuntimeObject*)L_32, String_t_il2cpp_TypeInfo_var));
String_t* L_33 = V_6;
String_t* L_34;
L_34 = LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587(__this, L_33, NULL);
V_2 = L_34;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_35 = ((BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434*)__this)->____right_3;
NullCheck(L_35);
bool L_36;
L_36 = VirtualFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Data.ExpressionNode::IsConstant() */, L_35);
if (!L_36)
{
goto IL_00cd;
}
}
{
String_t* L_37 = V_2;
__this->____pattern_5 = L_37;
Il2CppCodeGenWriteBarrier((void**)(&__this->____pattern_5), (void*)L_37);
goto IL_00cd;
}
IL_00c6:
{
String_t* L_38 = __this->____pattern_5;
V_2 = L_38;
}
IL_00cd:
{
RuntimeObject* L_39 = V_1;
if (((String_t*)IsInstSealed((RuntimeObject*)L_39, String_t_il2cpp_TypeInfo_var)))
{
goto IL_00f9;
}
}
{
RuntimeObject* L_40 = V_1;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_40, SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var)))
{
goto IL_00f9;
}
}
{
int32_t L_41 = ((BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434*)__this)->____op_1;
RuntimeObject* L_42 = V_1;
NullCheck(L_42);
Type_t* L_43;
L_43 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_42, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_45;
L_45 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_44, NULL);
BinaryNode_SetTypeMismatchError_m2EA5BE65880378E1CD439F2BB89C9FE9E8503DB3(__this, L_41, L_43, L_45, NULL);
}
IL_00f9:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_46 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_47 = L_46;
NullCheck(L_47);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)32));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_48 = L_47;
NullCheck(L_48);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)12288));
V_3 = L_48;
RuntimeObject* L_49 = V_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_49, SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var)))
{
goto IL_0128;
}
}
{
RuntimeObject* L_50 = V_1;
V_7 = ((*(SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D*)((SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D*)(SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D*)UnBox(L_50, SqlString_t49F9D31E7FD7F45509E26DEFEB61F006965D588D_il2cpp_TypeInfo_var))));
String_t* L_51;
L_51 = SqlString_get_Value_m542A333CCBBF1866B0F9B9F01B442BC38272912A((&V_7), NULL);
V_4 = L_51;
goto IL_0130;
}
IL_0128:
{
RuntimeObject* L_52 = V_1;
V_4 = ((String_t*)CastclassSealed((RuntimeObject*)L_52, String_t_il2cpp_TypeInfo_var));
}
IL_0130:
{
String_t* L_53 = V_4;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_54 = V_3;
NullCheck(L_53);
String_t* L_55;
L_55 = String_TrimEnd_mD7CFB0999EEEE20E3A869516EBCE07E8AB5BD529(L_53, L_54, NULL);
V_5 = L_55;
int32_t L_56 = __this->____kind_4;
V_9 = L_56;
int32_t L_57 = V_9;
switch (((int32_t)il2cpp_codegen_subtract(L_57, 1)))
{
case 0:
{
goto IL_0199;
}
case 1:
{
goto IL_01b0;
}
case 2:
{
goto IL_017f;
}
case 3:
{
goto IL_0168;
}
case 4:
{
goto IL_0161;
}
}
}
{
goto IL_01ce;
}
IL_0161:
{
bool L_58 = ((bool)1);
RuntimeObject* L_59 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_58);
return L_59;
}
IL_0168:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_60;
L_60 = ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline(__this, NULL);
String_t* L_61 = V_5;
String_t* L_62 = V_2;
NullCheck(L_60);
int32_t L_63;
L_63 = DataTable_Compare_mD425943926EF05816C7B8F5BB02F4234C0AB72C5(L_60, L_61, L_62, NULL);
bool L_64 = ((bool)((((int32_t)L_63) == ((int32_t)0))? 1 : 0));
RuntimeObject* L_65 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_64);
return L_65;
}
IL_017f:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_66;
L_66 = ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline(__this, NULL);
String_t* L_67 = V_5;
String_t* L_68 = V_2;
NullCheck(L_66);
int32_t L_69;
L_69 = DataTable_IndexOf_m53D9D42A5C662DA9F6F13F50FC798EB97F4E13D3(L_66, L_67, L_68, NULL);
bool L_70 = ((bool)((((int32_t)((((int32_t)0) > ((int32_t)L_69))? 1 : 0)) == ((int32_t)0))? 1 : 0));
RuntimeObject* L_71 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_70);
return L_71;
}
IL_0199:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_72;
L_72 = ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline(__this, NULL);
String_t* L_73 = V_5;
String_t* L_74 = V_2;
NullCheck(L_72);
int32_t L_75;
L_75 = DataTable_IndexOf_m53D9D42A5C662DA9F6F13F50FC798EB97F4E13D3(L_72, L_73, L_74, NULL);
bool L_76 = ((bool)((((int32_t)L_75) == ((int32_t)0))? 1 : 0));
RuntimeObject* L_77 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_76);
return L_77;
}
IL_01b0:
{
String_t* L_78 = V_2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_79 = V_3;
NullCheck(L_78);
String_t* L_80;
L_80 = String_TrimEnd_mD7CFB0999EEEE20E3A869516EBCE07E8AB5BD529(L_78, L_79, NULL);
V_8 = L_80;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_81;
L_81 = ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline(__this, NULL);
String_t* L_82 = V_5;
String_t* L_83 = V_8;
NullCheck(L_81);
bool L_84;
L_84 = DataTable_IsSuffix_mFB5BAA6A8A78FECFC3FD8179491F0720F26A2F77(L_81, L_82, L_83, NULL);
bool L_85 = L_84;
RuntimeObject* L_86 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_85);
return L_86;
}
IL_01ce:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_87 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
return L_87;
}
}
// System.String System.Data.LikeNode::AnalyzePattern(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587 (LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001* __this, String_t* ___pat0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
String_t* G_B25_0 = NULL;
String_t* G_B24_0 = NULL;
String_t* G_B33_0 = NULL;
String_t* G_B26_0 = NULL;
String_t* G_B28_0 = NULL;
String_t* G_B27_0 = NULL;
String_t* G_B32_0 = NULL;
String_t* G_B30_0 = NULL;
String_t* G_B29_0 = NULL;
String_t* G_B31_0 = NULL;
{
String_t* L_0 = ___pat0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_2, 1)));
V_1 = L_3;
String_t* L_4 = ___pat0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = V_1;
int32_t L_6 = V_0;
NullCheck(L_4);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_4, 0, L_5, 0, L_6, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = V_1;
int32_t L_8 = V_0;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Il2CppChar)0);
int32_t L_9 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_9, 1)));
V_2 = L_10;
V_3 = 0;
V_4 = 0;
V_5 = 0;
goto IL_00dc;
}
IL_0034:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = V_1;
int32_t L_12 = V_5;
NullCheck(L_11);
int32_t L_13 = L_12;
uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
if ((((int32_t)L_14) == ((int32_t)((int32_t)42))))
{
goto IL_004c;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = V_1;
int32_t L_16 = V_5;
NullCheck(L_15);
int32_t L_17 = L_16;
uint16_t L_18 = (uint16_t)(L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)37)))))
{
goto IL_007e;
}
}
{
goto IL_004c;
}
IL_0046:
{
int32_t L_19 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_19, 1));
}
IL_004c:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_1;
int32_t L_21 = V_5;
NullCheck(L_20);
int32_t L_22 = L_21;
uint16_t L_23 = (uint16_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
if ((((int32_t)L_23) == ((int32_t)((int32_t)42))))
{
goto IL_005c;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = V_1;
int32_t L_25 = V_5;
NullCheck(L_24);
int32_t L_26 = L_25;
uint16_t L_27 = (uint16_t)(L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)37)))))
{
goto IL_0061;
}
}
IL_005c:
{
int32_t L_28 = V_5;
int32_t L_29 = V_0;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0046;
}
}
IL_0061:
{
int32_t L_30 = V_5;
int32_t L_31 = V_0;
if ((((int32_t)L_30) >= ((int32_t)L_31)))
{
goto IL_006a;
}
}
{
int32_t L_32 = V_3;
if ((((int32_t)L_32) > ((int32_t)0)))
{
goto IL_006f;
}
}
IL_006a:
{
int32_t L_33 = V_4;
if ((((int32_t)L_33) < ((int32_t)2)))
{
goto IL_0076;
}
}
IL_006f:
{
String_t* L_34 = ___pat0;
Exception_t* L_35;
L_35 = ExprException_InvalidPattern_mDCD05AE13093A0206D3EEB1FE19830B3DD0B09E3(L_34, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587_RuntimeMethod_var)));
}
IL_0076:
{
int32_t L_36 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add(L_36, 1));
goto IL_00dc;
}
IL_007e:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_37 = V_1;
int32_t L_38 = V_5;
NullCheck(L_37);
int32_t L_39 = L_38;
uint16_t L_40 = (uint16_t)(L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
if ((!(((uint32_t)L_40) == ((uint32_t)((int32_t)91)))))
{
goto IL_00cb;
}
}
{
int32_t L_41 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_41, 1));
int32_t L_42 = V_5;
int32_t L_43 = V_0;
if ((((int32_t)L_42) < ((int32_t)L_43)))
{
goto IL_0098;
}
}
{
String_t* L_44 = ___pat0;
Exception_t* L_45;
L_45 = ExprException_InvalidPattern_mDCD05AE13093A0206D3EEB1FE19830B3DD0B09E3(L_44, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_45, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587_RuntimeMethod_var)));
}
IL_0098:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_46 = V_2;
int32_t L_47 = V_3;
int32_t L_48 = L_47;
V_3 = ((int32_t)il2cpp_codegen_add(L_48, 1));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_49 = V_1;
int32_t L_50 = V_5;
int32_t L_51 = L_50;
V_5 = ((int32_t)il2cpp_codegen_add(L_51, 1));
NullCheck(L_49);
int32_t L_52 = L_51;
uint16_t L_53 = (uint16_t)(L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
NullCheck(L_46);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(L_48), (Il2CppChar)L_53);
int32_t L_54 = V_5;
int32_t L_55 = V_0;
if ((((int32_t)L_54) < ((int32_t)L_55)))
{
goto IL_00b4;
}
}
{
String_t* L_56 = ___pat0;
Exception_t* L_57;
L_57 = ExprException_InvalidPattern_mDCD05AE13093A0206D3EEB1FE19830B3DD0B09E3(L_56, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_57, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587_RuntimeMethod_var)));
}
IL_00b4:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_58 = V_1;
int32_t L_59 = V_5;
NullCheck(L_58);
int32_t L_60 = L_59;
uint16_t L_61 = (uint16_t)(L_58)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
if ((((int32_t)L_61) == ((int32_t)((int32_t)93))))
{
goto IL_00c3;
}
}
{
String_t* L_62 = ___pat0;
Exception_t* L_63;
L_63 = ExprException_InvalidPattern_mDCD05AE13093A0206D3EEB1FE19830B3DD0B09E3(L_62, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&LikeNode_AnalyzePattern_m6440FD11BB39E447C37BAF0FBB81346028322587_RuntimeMethod_var)));
}
IL_00c3:
{
int32_t L_64 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_64, 1));
goto IL_00dc;
}
IL_00cb:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_65 = V_2;
int32_t L_66 = V_3;
int32_t L_67 = L_66;
V_3 = ((int32_t)il2cpp_codegen_add(L_67, 1));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68 = V_1;
int32_t L_69 = V_5;
NullCheck(L_68);
int32_t L_70 = L_69;
uint16_t L_71 = (uint16_t)(L_68)->GetAt(static_cast<il2cpp_array_size_t>(L_70));
NullCheck(L_65);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_67), (Il2CppChar)L_71);
int32_t L_72 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add(L_72, 1));
}
IL_00dc:
{
int32_t L_73 = V_5;
int32_t L_74 = V_0;
if ((((int32_t)L_73) < ((int32_t)L_74)))
{
goto IL_0034;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_75 = V_2;
int32_t L_76 = V_3;
String_t* L_77;
L_77 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_75, 0, L_76, NULL);
int32_t L_78 = V_4;
G_B24_0 = L_77;
if (L_78)
{
G_B25_0 = L_77;
goto IL_00f8;
}
}
{
__this->____kind_4 = 4;
return G_B24_0;
}
IL_00f8:
{
int32_t L_79 = V_3;
G_B26_0 = G_B25_0;
if ((((int32_t)L_79) <= ((int32_t)0)))
{
G_B33_0 = G_B25_0;
goto IL_0134;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_80 = V_1;
NullCheck(L_80);
int32_t L_81 = 0;
uint16_t L_82 = (uint16_t)(L_80)->GetAt(static_cast<il2cpp_array_size_t>(L_81));
G_B27_0 = G_B26_0;
if ((((int32_t)L_82) == ((int32_t)((int32_t)42))))
{
G_B28_0 = G_B26_0;
goto IL_010a;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_83 = V_1;
NullCheck(L_83);
int32_t L_84 = 0;
uint16_t L_85 = (uint16_t)(L_83)->GetAt(static_cast<il2cpp_array_size_t>(L_84));
G_B28_0 = G_B27_0;
if ((!(((uint32_t)L_85) == ((uint32_t)((int32_t)37)))))
{
G_B32_0 = G_B27_0;
goto IL_012c;
}
}
IL_010a:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_86 = V_1;
int32_t L_87 = V_0;
NullCheck(L_86);
int32_t L_88 = ((int32_t)il2cpp_codegen_subtract(L_87, 1));
uint16_t L_89 = (uint16_t)(L_86)->GetAt(static_cast<il2cpp_array_size_t>(L_88));
G_B29_0 = G_B28_0;
if ((((int32_t)L_89) == ((int32_t)((int32_t)42))))
{
G_B30_0 = G_B28_0;
goto IL_011c;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_90 = V_1;
int32_t L_91 = V_0;
NullCheck(L_90);
int32_t L_92 = ((int32_t)il2cpp_codegen_subtract(L_91, 1));
uint16_t L_93 = (uint16_t)(L_90)->GetAt(static_cast<il2cpp_array_size_t>(L_92));
G_B30_0 = G_B29_0;
if ((!(((uint32_t)L_93) == ((uint32_t)((int32_t)37)))))
{
G_B31_0 = G_B29_0;
goto IL_0124;
}
}
IL_011c:
{
__this->____kind_4 = 3;
return G_B30_0;
}
IL_0124:
{
__this->____kind_4 = 2;
return G_B31_0;
}
IL_012c:
{
__this->____kind_4 = 1;
return G_B32_0;
}
IL_0134:
{
__this->____kind_4 = 5;
return G_B33_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.Data.ConstNode::.ctor(System.Data.DataTable,System.Data.ValueType,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstNode__ctor_m7C6B1B19AD635A224B7EC3ED00C4EF906E1E3A10 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___type1, RuntimeObject* ___constant2, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
int32_t L_1 = ___type1;
RuntimeObject* L_2 = ___constant2;
ConstNode__ctor_m68472F28A01DAD79B5E27F449076A6B72365F7F5(__this, L_0, L_1, L_2, (bool)1, NULL);
return;
}
}
// System.Void System.Data.ConstNode::.ctor(System.Data.DataTable,System.Data.ValueType,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstNode__ctor_m68472F28A01DAD79B5E27F449076A6B72365F7F5 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, int32_t ___type1, RuntimeObject* ___constant2, bool ___fParseQuotes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6855F4EC54AF75D6CAC8881791FBD2C863F2C1C9);
s_Il2CppMethodInitialized = true;
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
ExpressionNode__ctor_m283F3264481483CC47247AF2E8E012F055616698(__this, L_0, NULL);
int32_t L_1 = ___type1;
switch (L_1)
{
case 0:
{
goto IL_0032;
}
case 1:
{
goto IL_0071;
}
case 2:
{
goto IL_003e;
}
case 3:
{
goto IL_0088;
}
case 4:
{
goto IL_005a;
}
case 5:
{
goto IL_004c;
}
case 6:
{
goto IL_00d1;
}
case 7:
{
goto IL_00b5;
}
}
}
{
goto IL_00d1;
}
IL_0032:
{
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_2 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
__this->____val_1 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_2);
return;
}
IL_003e:
{
RuntimeObject* L_3 = ___constant2;
RuntimeObject* L_4;
L_4 = ConstNode_SmallestNumeric_m1E2FA79FE8AC96258D5BDB916A4984CF96E96899(__this, L_3, NULL);
__this->____val_1 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_4);
return;
}
IL_004c:
{
RuntimeObject* L_5 = ___constant2;
RuntimeObject* L_6;
L_6 = ConstNode_SmallestDecimal_mB8927B5A2FAB9F62B5E111BC2B8E1AA24A4D5B99(__this, L_5, NULL);
__this->____val_1 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_6);
return;
}
IL_005a:
{
RuntimeObject* L_7 = ___constant2;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_8;
L_8 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_9;
L_9 = Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F(L_7, L_8, NULL);
double L_10 = L_9;
RuntimeObject* L_11 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_10);
__this->____val_1 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_11);
return;
}
IL_0071:
{
RuntimeObject* L_12 = ___constant2;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_13;
L_13 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
bool L_14;
L_14 = Convert_ToBoolean_mB0FE0EF8913B62A513A8604E24D832B4F5CC9379(L_12, L_13, NULL);
bool L_15 = L_14;
RuntimeObject* L_16 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_15);
__this->____val_1 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_16);
return;
}
IL_0088:
{
bool L_17 = ___fParseQuotes3;
if (!L_17)
{
goto IL_00a8;
}
}
{
RuntimeObject* L_18 = ___constant2;
NullCheck(((String_t*)CastclassSealed((RuntimeObject*)L_18, String_t_il2cpp_TypeInfo_var)));
String_t* L_19;
L_19 = String_Replace_mABDB7003A1D0AEDCAE9FF85E3DFFFBA752D2A166(((String_t*)CastclassSealed((RuntimeObject*)L_18, String_t_il2cpp_TypeInfo_var)), _stringLiteral6855F4EC54AF75D6CAC8881791FBD2C863F2C1C9, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL);
__this->____val_1 = L_19;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_19);
return;
}
IL_00a8:
{
RuntimeObject* L_20 = ___constant2;
__this->____val_1 = ((String_t*)CastclassSealed((RuntimeObject*)L_20, String_t_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_20, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_00b5:
{
RuntimeObject* L_21 = ___constant2;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_22;
L_22 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23;
L_23 = DateTime_Parse_mFC060EFBF6C9D9FF7E17E23800E3CB14D04B322A(((String_t*)CastclassSealed((RuntimeObject*)L_21, String_t_il2cpp_TypeInfo_var)), L_22, NULL);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = L_23;
RuntimeObject* L_25 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_24);
__this->____val_1 = L_25;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_25);
return;
}
IL_00d1:
{
RuntimeObject* L_26 = ___constant2;
__this->____val_1 = L_26;
Il2CppCodeGenWriteBarrier((void**)(&__this->____val_1), (void*)L_26);
return;
}
}
// System.Void System.Data.ConstNode::Bind(System.Data.DataTable,System.Collections.Generic.List`1<System.Data.DataColumn>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstNode_Bind_m1A7BD2E3B2FF1E7978E2CD56DF270EA4E00C9612 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* ___list1, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
ExpressionNode_BindTable_mE73D14C3A5AD6BBEAECD63E90C3828CB21DC71DC_inline(__this, L_0, NULL);
return;
}
}
// System.Object System.Data.ConstNode::Eval()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstNode_Eval_m6C6759254D84CC2234CFDA995E122F07E0BA60C9 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____val_1;
return L_0;
}
}
// System.Object System.Data.ConstNode::Eval(System.Data.DataRow,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstNode_Eval_m017BC47A53C5C3B1D87FE21832C25D7B5E57ADD1 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, int32_t ___version1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.Data.ExpressionNode::Eval() */, __this);
return L_0;
}
}
// System.Object System.Data.ConstNode::Eval(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstNode_Eval_m8B437985182B6B154532E0F31BCA55A5A44D83D3 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___recordNos0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Object System.Data.ExpressionNode::Eval() */, __this);
return L_0;
}
}
// System.Boolean System.Data.ConstNode::IsConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstNode_IsConstant_m2F050E4F1A0EADF1BC7A6659DE88E70B58884C19 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Data.ConstNode::IsTableConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstNode_IsTableConstant_mA5658803EEA2B2B7F6B25E4484574406C4374525 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Data.ConstNode::HasLocalAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstNode_HasLocalAggregate_m0559F6E98F9CBE83C3BB43575331181FB23D40C7 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Data.ConstNode::HasRemoteAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstNode_HasRemoteAggregate_m4AF2522182FB7705F19C52A93CFC505D4EE419BB (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Data.ExpressionNode System.Data.ConstNode::Optimize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ConstNode_Optimize_m536980043EB6EE0FA60326BD08ED7CB538CB498D (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Object System.Data.ConstNode::SmallestDecimal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstNode_SmallestDecimal_mB8927B5A2FAB9F62B5E111BC2B8E1AA24A4D5B99 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, RuntimeObject* ___constant0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_1;
memset((&V_1), 0, sizeof(V_1));
double V_2 = 0.0;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___constant0;
if (L_0)
{
goto IL_0012;
}
}
{
double L_1 = (0.0);
RuntimeObject* L_2 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
IL_0012:
{
RuntimeObject* L_3 = ___constant0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var));
String_t* L_4 = V_0;
if (!L_4)
{
goto IL_004f;
}
}
{
String_t* L_5 = V_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_6;
L_6 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
bool L_7;
L_7 = Decimal_TryParse_m677E01C2DD4D001D8C73270EE906646DB7615A4B(L_5, ((int32_t)111), L_6, (&V_1), NULL);
if (!L_7)
{
goto IL_0034;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_8 = V_1;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_9 = L_8;
RuntimeObject* L_10 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_9);
return L_10;
}
IL_0034:
{
String_t* L_11 = V_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_12;
L_12 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
bool L_13;
L_13 = Double_TryParse_m6038C4DBF1789F1954938FF7F6D3459359CD7718(L_11, ((int32_t)231), L_12, (&V_2), NULL);
if (!L_13)
{
goto IL_00c2;
}
}
{
double L_14 = V_2;
double L_15 = L_14;
RuntimeObject* L_16 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_15);
return L_16;
}
IL_004f:
{
RuntimeObject* L_17 = ___constant0;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_17, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var));
RuntimeObject* L_18 = V_3;
if (!L_18)
{
goto IL_00c2;
}
}
try
{// begin try (depth: 1)
RuntimeObject* L_19 = V_3;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_20;
L_20 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
NullCheck(L_19);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_21;
L_21 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_19, L_20);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_22 = L_21;
RuntimeObject* L_23 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_22);
V_4 = L_23;
goto IL_00c4;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_006d;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0075;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_007d;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0085;
}
throw e;
}
CATCH_006d:
{// begin catch(System.ArgumentException)
Exception_t* L_24;
L_24 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_008d;
}// end catch (depth: 1)
CATCH_0075:
{// begin catch(System.FormatException)
Exception_t* L_25;
L_25 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_008d;
}// end catch (depth: 1)
CATCH_007d:
{// begin catch(System.InvalidCastException)
Exception_t* L_26;
L_26 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_008d;
}// end catch (depth: 1)
CATCH_0085:
{// begin catch(System.OverflowException)
Exception_t* L_27;
L_27 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_008d;
}// end catch (depth: 1)
IL_008d:
{
}
try
{// begin try (depth: 1)
RuntimeObject* L_28 = V_3;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_29;
L_29 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
NullCheck(L_28);
double L_30;
L_30 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_28, L_29);
double L_31 = L_30;
RuntimeObject* L_32 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_31);
V_4 = L_32;
goto IL_00c4;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00a2;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00aa;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00b2;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00ba;
}
throw e;
}
CATCH_00a2:
{// begin catch(System.ArgumentException)
Exception_t* L_33;
L_33 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00c2;
}// end catch (depth: 1)
CATCH_00aa:
{// begin catch(System.FormatException)
Exception_t* L_34;
L_34 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00c2;
}// end catch (depth: 1)
CATCH_00b2:
{// begin catch(System.InvalidCastException)
Exception_t* L_35;
L_35 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00c2;
}// end catch (depth: 1)
CATCH_00ba:
{// begin catch(System.OverflowException)
Exception_t* L_36;
L_36 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00c2;
}// end catch (depth: 1)
IL_00c2:
{
RuntimeObject* L_37 = ___constant0;
return L_37;
}
IL_00c4:
{
RuntimeObject* L_38 = V_4;
return L_38;
}
}
// System.Object System.Data.ConstNode::SmallestNumeric(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstNode_SmallestNumeric_m1E2FA79FE8AC96258D5BDB916A4984CF96E96899 (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* __this, RuntimeObject* ___constant0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
int64_t V_2 = 0;
double V_3 = 0.0;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___constant0;
if (L_0)
{
goto IL_000a;
}
}
{
int32_t L_1 = 0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
IL_000a:
{
RuntimeObject* L_3 = ___constant0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var));
String_t* L_4 = V_0;
if (!L_4)
{
goto IL_0060;
}
}
{
String_t* L_5 = V_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_6;
L_6 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
bool L_7;
L_7 = Int32_TryParse_m3CB3A8252B2254BF929D207AFA9F2CD4DA3E3F79(L_5, 7, L_6, (&V_1), NULL);
if (!L_7)
{
goto IL_002b;
}
}
{
int32_t L_8 = V_1;
int32_t L_9 = L_8;
RuntimeObject* L_10 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_9);
return L_10;
}
IL_002b:
{
String_t* L_11 = V_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_12;
L_12 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
bool L_13;
L_13 = Int64_TryParse_m280F0E3C898A7C3A57F35E3B136D4BFACE12122A(L_11, 7, L_12, (&V_2), NULL);
if (!L_13)
{
goto IL_0042;
}
}
{
int64_t L_14 = V_2;
int64_t L_15 = L_14;
RuntimeObject* L_16 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_15);
return L_16;
}
IL_0042:
{
String_t* L_17 = V_0;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_18;
L_18 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
bool L_19;
L_19 = Double_TryParse_m6038C4DBF1789F1954938FF7F6D3459359CD7718(L_17, ((int32_t)231), L_18, (&V_3), NULL);
if (!L_19)
{
goto IL_0113;
}
}
{
double L_20 = V_3;
double L_21 = L_20;
RuntimeObject* L_22 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_21);
return L_22;
}
IL_0060:
{
RuntimeObject* L_23 = ___constant0;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_23, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var));
RuntimeObject* L_24 = V_4;
if (!L_24)
{
goto IL_0113;
}
}
try
{// begin try (depth: 1)
RuntimeObject* L_25 = V_4;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_26;
L_26 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
NullCheck(L_25);
int32_t L_27;
L_27 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_25, L_26);
int32_t L_28 = L_27;
RuntimeObject* L_29 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_28);
V_5 = L_29;
goto IL_0115;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0087;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_008f;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0097;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_009f;
}
throw e;
}
CATCH_0087:
{// begin catch(System.ArgumentException)
Exception_t* L_30;
L_30 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00a7;
}// end catch (depth: 1)
CATCH_008f:
{// begin catch(System.FormatException)
Exception_t* L_31;
L_31 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00a7;
}// end catch (depth: 1)
CATCH_0097:
{// begin catch(System.InvalidCastException)
Exception_t* L_32;
L_32 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00a7;
}// end catch (depth: 1)
CATCH_009f:
{// begin catch(System.OverflowException)
Exception_t* L_33;
L_33 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00a7;
}// end catch (depth: 1)
IL_00a7:
{
}
try
{// begin try (depth: 1)
RuntimeObject* L_34 = V_4;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_35;
L_35 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
NullCheck(L_34);
int64_t L_36;
L_36 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_34, L_35);
int64_t L_37 = L_36;
RuntimeObject* L_38 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_37);
V_5 = L_38;
goto IL_0115;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00bd;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00c5;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00cd;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00d5;
}
throw e;
}
CATCH_00bd:
{// begin catch(System.ArgumentException)
Exception_t* L_39;
L_39 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00dd;
}// end catch (depth: 1)
CATCH_00c5:
{// begin catch(System.FormatException)
Exception_t* L_40;
L_40 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00dd;
}// end catch (depth: 1)
CATCH_00cd:
{// begin catch(System.InvalidCastException)
Exception_t* L_41;
L_41 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00dd;
}// end catch (depth: 1)
CATCH_00d5:
{// begin catch(System.OverflowException)
Exception_t* L_42;
L_42 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_00dd;
}// end catch (depth: 1)
IL_00dd:
{
}
try
{// begin try (depth: 1)
RuntimeObject* L_43 = V_4;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_44;
L_44 = NumberFormatInfo_get_InvariantInfo_m08BD3BFBBBE015F2EDCF6DE969ACFB327E453621(NULL);
NullCheck(L_43);
double L_45;
L_45 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_43, L_44);
double L_46 = L_45;
RuntimeObject* L_47 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_46);
V_5 = L_47;
goto IL_0115;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00f3;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_00fb;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0103;
}
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_010b;
}
throw e;
}
CATCH_00f3:
{// begin catch(System.ArgumentException)
Exception_t* L_48;
L_48 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0113;
}// end catch (depth: 1)
CATCH_00fb:
{// begin catch(System.FormatException)
Exception_t* L_49;
L_49 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0113;
}// end catch (depth: 1)
CATCH_0103:
{// begin catch(System.InvalidCastException)
Exception_t* L_50;
L_50 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0113;
}// end catch (depth: 1)
CATCH_010b:
{// begin catch(System.OverflowException)
Exception_t* L_51;
L_51 = ExceptionBuilder_TraceExceptionWithoutRethrow_mA045B31187637D662D2525A09120C8E89956A125(((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)), NULL);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0113;
}// end catch (depth: 1)
IL_0113:
{
RuntimeObject* L_52 = ___constant0;
return L_52;
}
IL_0115:
{
RuntimeObject* L_53 = V_5;
return L_53;
}
}
#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.Data.DataExpression::.ctor(System.Data.DataTable,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataExpression__ctor_m30E975EC6FE2D7B35A258FB4BDC789EF24F6C765 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, String_t* ___expression1, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
String_t* L_1 = ___expression1;
DataExpression__ctor_mBCA81ACC369CF3945922CE1A14140CC534146F9F(__this, L_0, L_1, (Type_t*)NULL, NULL);
return;
}
}
// System.Void System.Data.DataExpression::.ctor(System.Data.DataTable,System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataExpression__ctor_mBCA81ACC369CF3945922CE1A14140CC534146F9F (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, String_t* ___expression1, Type_t* ___type2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisDataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_m2A49703C31898C24DBB845E50785807B9624E634_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* V_0 = NULL;
{
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_0;
L_0 = Array_Empty_TisDataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_m2A49703C31898C24DBB845E50785807B9624E634_inline(Array_Empty_TisDataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66_m2A49703C31898C24DBB845E50785807B9624E634_RuntimeMethod_var);
__this->____dependency_7 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dependency_7), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* L_2 = (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311*)il2cpp_codegen_object_new(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var);
NullCheck(L_2);
ExpressionParser__ctor_m09792BDB75E8C301D63006FF1F47C6A9871ABD14(L_2, L_1, NULL);
V_0 = L_2;
ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* L_3 = V_0;
String_t* L_4 = ___expression1;
NullCheck(L_3);
ExpressionParser_LoadExpression_m7302687C5B2BFDF3DF0424AD073DB8763200AFA1(L_3, L_4, NULL);
String_t* L_5 = ___expression1;
__this->____originalExpression_0 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____originalExpression_0), (void*)L_5);
__this->____expr_3 = (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expr_3), (void*)(ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL);
String_t* L_6 = ___expression1;
if (!L_6)
{
goto IL_0081;
}
}
{
Type_t* L_7 = ___type2;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = DataStorage_GetStorageType_mDD0D0A90F39994863F9A9E0551C47076D10A5E33(L_7, NULL);
__this->____storageType_5 = L_8;
int32_t L_9 = __this->____storageType_5;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)24)))))
{
goto IL_004d;
}
}
{
Type_t* L_10 = ___type2;
Exception_t* L_11;
L_11 = ExprException_UnsupportedDataType_m1CF9965635DE8E35EF2E6C16340D43674AC239CD(L_10, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression__ctor_mBCA81ACC369CF3945922CE1A14140CC534146F9F_RuntimeMethod_var)));
}
IL_004d:
{
Type_t* L_12 = ___type2;
__this->____dataType_6 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dataType_6), (void*)L_12);
ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* L_13 = V_0;
NullCheck(L_13);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_14;
L_14 = ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8(L_13, NULL);
__this->____expr_3 = L_14;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expr_3), (void*)L_14);
__this->____parsed_1 = (bool)1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_15 = __this->____expr_3;
if (!L_15)
{
goto IL_007a;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_16 = ___table0;
if (!L_16)
{
goto IL_007a;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_17 = ___table0;
DataExpression_Bind_mE90EAA6D99A966D2F519F9C024ACD5E83712089C(__this, L_17, NULL);
return;
}
IL_007a:
{
__this->____bound_2 = (bool)0;
}
IL_0081:
{
return;
}
}
// System.String System.Data.DataExpression::get_Expression()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DataExpression_get_Expression_m0633510D87CB56DE2CF81D2CC40E4F638BC417F0 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->____originalExpression_0;
if (L_0)
{
goto IL_000e;
}
}
{
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_000e:
{
String_t* L_1 = __this->____originalExpression_0;
return L_1;
}
}
// System.Boolean System.Data.DataExpression::get_HasValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_get_HasValue_m8AB929923D985CDD16AD15DCF6B35732D0C8C07D (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____expr_3;
return (bool)((!(((RuntimeObject*)(ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
}
}
// System.Void System.Data.DataExpression::Bind(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataExpression_Bind_mE90EAA6D99A966D2F519F9C024ACD5E83712089C (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m8A502D95BB2662F46C3F92088517C1E00690FEEF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE8A6104EE32A7CF4C3168A3F7C4FD1AEE2295817_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* V_0 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
__this->____table_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_4), (void*)L_0);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = ___table0;
if (L_1)
{
goto IL_000b;
}
}
{
return;
}
IL_000b:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____expr_3;
if (!L_2)
{
goto IL_0051;
}
}
{
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_3 = (List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785*)il2cpp_codegen_object_new(List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785_il2cpp_TypeInfo_var);
NullCheck(L_3);
List_1__ctor_mE8A6104EE32A7CF4C3168A3F7C4FD1AEE2295817(L_3, List_1__ctor_mE8A6104EE32A7CF4C3168A3F7C4FD1AEE2295817_RuntimeMethod_var);
V_0 = L_3;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_4 = __this->____expr_3;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_5 = ___table0;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_6 = V_0;
NullCheck(L_4);
VirtualActionInvoker2< DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07*, List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* >::Invoke(5 /* System.Void System.Data.ExpressionNode::Bind(System.Data.DataTable,System.Collections.Generic.List`1<System.Data.DataColumn>) */, L_4, L_5, L_6);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_7 = __this->____expr_3;
NullCheck(L_7);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_8;
L_8 = VirtualFuncInvoker0< ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* >::Invoke(13 /* System.Data.ExpressionNode System.Data.ExpressionNode::Optimize() */, L_7);
__this->____expr_3 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expr_3), (void*)L_8);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_9 = ___table0;
__this->____table_4 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_4), (void*)L_9);
__this->____bound_2 = (bool)1;
List_1_t3F99226F0C691927C5B70A8B7FD8B4ACA817A785* L_10 = V_0;
NullCheck(L_10);
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_11;
L_11 = List_1_ToArray_m8A502D95BB2662F46C3F92088517C1E00690FEEF(L_10, List_1_ToArray_m8A502D95BB2662F46C3F92088517C1E00690FEEF_RuntimeMethod_var);
__this->____dependency_7 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->____dependency_7), (void*)L_11);
}
IL_0051:
{
return;
}
}
// System.Boolean System.Data.DataExpression::DependsOn(System.Data.DataColumn)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_DependsOn_m6CD29A2494D572F8247B196CD4B0399B1CD71659 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___column0, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____expr_3;
if (!L_0)
{
goto IL_0015;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = __this->____expr_3;
DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* L_2 = ___column0;
NullCheck(L_1);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* >::Invoke(14 /* System.Boolean System.Data.ExpressionNode::DependsOn(System.Data.DataColumn) */, L_1, L_2);
return L_3;
}
IL_0015:
{
return (bool)0;
}
}
// System.Object System.Data.DataExpression::Evaluate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataExpression_Evaluate_m2A832B1AD4DB9BC5A968B95BA13CEE5DD5030687 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0;
L_0 = DataExpression_Evaluate_m1B155E77721AF6F4DA817D4D810E06EBB5E84BE5(__this, (DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*)NULL, ((int32_t)1536), NULL);
return L_0;
}
}
// System.Object System.Data.DataExpression::Evaluate(System.Data.DataRow,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DataExpression_Evaluate_m1B155E77721AF6F4DA817D4D810E06EBB5E84BE5 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, int32_t ___version1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Exception_t* V_1 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
Exception_t* G_B11_0 = NULL;
Exception_t* G_B10_0 = NULL;
int32_t G_B12_0 = 0;
{
bool L_0 = __this->____bound_2;
if (L_0)
{
goto IL_0014;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_1 = __this->____table_4;
DataExpression_Bind_mE90EAA6D99A966D2F519F9C024ACD5E83712089C(__this, L_1, NULL);
}
IL_0014:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_2 = __this->____expr_3;
if (!L_2)
{
goto IL_0094;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_3 = __this->____expr_3;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_4 = ___row0;
int32_t L_5 = ___version1;
NullCheck(L_3);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker2< RuntimeObject*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, int32_t >::Invoke(7 /* System.Object System.Data.ExpressionNode::Eval(System.Data.DataRow,System.Data.DataRowVersion) */, L_3, L_4, L_5);
V_0 = L_6;
RuntimeObject* L_7 = V_0;
il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var);
DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_8 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0;
if ((!(((RuntimeObject*)(RuntimeObject*)L_7) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_8))))
{
goto IL_003c;
}
}
{
int32_t L_9 = __this->____storageType_5;
if ((((int32_t)((int32_t)25)) >= ((int32_t)L_9)))
{
goto IL_0096;
}
}
IL_003c:
{
}
try
{// begin try (depth: 1)
{
int32_t L_10 = __this->____storageType_5;
if ((((int32_t)1) == ((int32_t)L_10)))
{
goto IL_0064_1;
}
}
{
RuntimeObject* L_11 = V_0;
int32_t L_12 = __this->____storageType_5;
Type_t* L_13 = __this->____dataType_6;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_14 = __this->____table_4;
NullCheck(L_14);
RuntimeObject* L_15;
L_15 = DataTable_get_FormatProvider_mDDD3E283FBF8EDEF604FA53499636745136CF414(L_14, NULL);
RuntimeObject* L_16;
L_16 = SqlConvert_ChangeType2_m5D7A9B02FD7B211AC60BDF6A4973CFCE367C400F(L_11, L_12, L_13, L_15, NULL);
V_0 = L_16;
}
IL_0064_1:
{
goto IL_0096;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
}
{// begin filter(depth: 1)
bool __filter_local = false;
try
{// begin implicit try block
{
Exception_t* L_17 = ((Exception_t*)IsInstClass((RuntimeObject*)((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))));
G_B10_0 = L_17;
if (L_17)
{
G_B11_0 = L_17;
goto IL_0072;
}
}
{
G_B12_0 = 0;
goto IL_007c;
}
IL_0072:
{
V_1 = G_B11_0;
Exception_t* L_18 = V_1;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ADP_t2C39CD1D5CEFC1B88FF6F7C7AD1916F0FD538CC0_il2cpp_TypeInfo_var)));
bool L_19;
L_19 = ADP_IsCatchableExceptionType_m7A0C2618DCBDE0DC74A29D0AF2FE50CAD9DEB4B2(L_18, NULL);
G_B12_0 = ((!(((uint32_t)L_19) <= ((uint32_t)0)))? 1 : 0);
}
IL_007c:
{
__filter_local = (G_B12_0) ? true : false;
}
}// end implicit try block
catch(Il2CppExceptionWrapper&)
{// begin implicit catch block
__filter_local = false;
}// end implicit catch block
if (__filter_local)
{
goto FILTER_007e;
}
else
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression_Evaluate_m1B155E77721AF6F4DA817D4D810E06EBB5E84BE5_RuntimeMethod_var)));
}
}// end filter (depth: 1)
FILTER_007e:
{// begin catch(filter)
Exception_t* L_20 = V_1;
Exception_t* L_21;
L_21 = ExceptionBuilder_TraceExceptionForCapture_m7FC4C600BFD10849F5DCCB85AF16270ED9B558E2(L_20, NULL);
RuntimeObject* L_22 = V_0;
Type_t* L_23 = __this->____dataType_6;
Exception_t* L_24 = V_1;
Exception_t* L_25;
L_25 = ExprException_DatavalueConvertion_m4048720B72239737E057BF0F3CEA7C48509235F1(L_22, L_23, L_24, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression_Evaluate_m1B155E77721AF6F4DA817D4D810E06EBB5E84BE5_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0094:
{
V_0 = NULL;
}
IL_0096:
{
RuntimeObject* L_26 = V_0;
return L_26;
}
}
// System.Boolean System.Data.DataExpression::Invoke(System.Data.DataRow,System.Data.DataRowVersion)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_Invoke_m94A0AC8E63F16C5AA653E9DE519DC8EB24DFD785 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* ___row0, int32_t ___version1, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
bool V_1 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____expr_3;
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_1 = ___row0;
if (L_1)
{
goto IL_0013;
}
}
{
Exception_t* L_2;
L_2 = ExprException_InvokeArgument_mDDC164AB7417A8A8CF9CF3F73BE4531C17405DF3(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression_Invoke_m94A0AC8E63F16C5AA653E9DE519DC8EB24DFD785_RuntimeMethod_var)));
}
IL_0013:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_3 = __this->____expr_3;
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_4 = ___row0;
int32_t L_5 = ___version1;
NullCheck(L_3);
RuntimeObject* L_6;
L_6 = VirtualFuncInvoker2< RuntimeObject*, DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388*, int32_t >::Invoke(7 /* System.Object System.Data.ExpressionNode::Eval(System.Data.DataRow,System.Data.DataRowVersion) */, L_3, L_4, L_5);
V_0 = L_6;
}
try
{// begin try (depth: 1)
RuntimeObject* L_7 = V_0;
bool L_8;
L_8 = DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544(L_7, NULL);
V_1 = L_8;
goto IL_0037;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EvaluateException_t78BD6A3F4B827B5CB5688268A536B3C304A6BC2C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_002a;
}
throw e;
}
CATCH_002a:
{// begin catch(System.Data.EvaluateException)
String_t* L_9;
L_9 = DataExpression_get_Expression_m0633510D87CB56DE2CF81D2CC40E4F638BC417F0(__this, NULL);
Exception_t* L_10;
L_10 = ExprException_FilterConvertion_m7CEB8EFEAEAC7E79B4397354EF0D155650BA739A(L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression_Invoke_m94A0AC8E63F16C5AA653E9DE519DC8EB24DFD785_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0037:
{
bool L_11 = V_1;
return L_11;
}
}
// System.Data.DataColumn[] System.Data.DataExpression::GetDependency()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* DataExpression_GetDependency_m768D3CE6A944FBC1BCD85631051C10A6679099CA (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method)
{
{
DataColumnU5BU5D_t4600ECA5C95E7699298FCD6D677AEAD7D9F5F0CA* L_0 = __this->____dependency_7;
return L_0;
}
}
// System.Boolean System.Data.DataExpression::IsTableAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_IsTableAggregate_mE121A81285865771ADBE7B9E7ED0F8BAA9031693 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____expr_3;
if (!L_0)
{
goto IL_0014;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = __this->____expr_3;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.Data.ExpressionNode::IsTableConstant() */, L_1);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.Data.DataExpression::IsUnknown(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_IsUnknown_m56F6E33CD45087D1873954F5B7E6FC267D1EA6BB (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___value0;
il2cpp_codegen_runtime_class_init_inline(DataStorage_t862E6C556F9F1FB0BA5A4F51D926C40944A1EC7A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = DataStorage_IsObjectNull_m788B8019D245253AAB19B91CE6604B79113921C4(L_0, NULL);
return L_1;
}
}
// System.Boolean System.Data.DataExpression::HasLocalAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_HasLocalAggregate_m373EEC725093C2A6D247345E27F1616349EBDA0A (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____expr_3;
if (!L_0)
{
goto IL_0014;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = __this->____expr_3;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Data.ExpressionNode::HasLocalAggregate() */, L_1);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.Data.DataExpression::HasRemoteAggregate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_HasRemoteAggregate_m6F909A2C351BEA665525C483FE77725F5AA21455 (DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* __this, const RuntimeMethod* method)
{
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_0 = __this->____expr_3;
if (!L_0)
{
goto IL_0014;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_1 = __this->____expr_3;
NullCheck(L_1);
bool L_2;
L_2 = VirtualFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Data.ExpressionNode::HasRemoteAggregate() */, L_1);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.Data.DataExpression::ToBoolean(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544 (RuntimeObject* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
Exception_t* V_2 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
Exception_t* G_B10_0 = NULL;
Exception_t* G_B9_0 = NULL;
int32_t G_B11_0 = 0;
{
RuntimeObject* L_0 = ___value0;
bool L_1;
L_1 = DataExpression_IsUnknown_m56F6E33CD45087D1873954F5B7E6FC267D1EA6BB(L_0, NULL);
if (!L_1)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
RuntimeObject* L_2 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))
{
goto IL_0019;
}
}
{
RuntimeObject* L_3 = ___value0;
return ((*(bool*)((bool*)(bool*)UnBox(L_3, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))));
}
IL_0019:
{
RuntimeObject* L_4 = ___value0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_4, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var)))
{
goto IL_0030;
}
}
{
RuntimeObject* L_5 = ___value0;
V_0 = ((*(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)((SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)(SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7*)UnBox(L_5, SqlBoolean_tAD22108BE5F656A5AAFE19B054B2CA56C0AEE1D7_il2cpp_TypeInfo_var))));
bool L_6;
L_6 = SqlBoolean_get_IsTrue_mD2491FECA6D8BEC7F00C0071C6299187B28B52D4((&V_0), NULL);
return L_6;
}
IL_0030:
{
RuntimeObject* L_7 = ___value0;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_7, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0078;
}
}
try
{// begin try (depth: 1)
RuntimeObject* L_8 = ___value0;
il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
bool L_9;
L_9 = Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38(((String_t*)CastclassSealed((RuntimeObject*)L_8, String_t_il2cpp_TypeInfo_var)), NULL);
V_1 = L_9;
goto IL_008a;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
}
{// begin filter(depth: 1)
bool __filter_local = false;
try
{// begin implicit try block
{
Exception_t* L_10 = ((Exception_t*)IsInstClass((RuntimeObject*)((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))));
G_B9_0 = L_10;
if (L_10)
{
G_B10_0 = L_10;
goto IL_0052;
}
}
{
G_B11_0 = 0;
goto IL_005c;
}
IL_0052:
{
V_2 = G_B10_0;
Exception_t* L_11 = V_2;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ADP_t2C39CD1D5CEFC1B88FF6F7C7AD1916F0FD538CC0_il2cpp_TypeInfo_var)));
bool L_12;
L_12 = ADP_IsCatchableExceptionType_m7A0C2618DCBDE0DC74A29D0AF2FE50CAD9DEB4B2(L_11, NULL);
G_B11_0 = ((!(((uint32_t)L_12) <= ((uint32_t)0)))? 1 : 0);
}
IL_005c:
{
__filter_local = (G_B11_0) ? true : false;
}
}// end implicit try block
catch(Il2CppExceptionWrapper&)
{// begin implicit catch block
__filter_local = false;
}// end implicit catch block
if (__filter_local)
{
goto FILTER_005e;
}
else
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544_RuntimeMethod_var)));
}
}// end filter (depth: 1)
FILTER_005e:
{// begin catch(filter)
Exception_t* L_13 = V_2;
Exception_t* L_14;
L_14 = ExceptionBuilder_TraceExceptionForCapture_m7FC4C600BFD10849F5DCCB85AF16270ED9B558E2(L_13, NULL);
RuntimeObject* L_15 = ___value0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (((RuntimeType*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var))) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_17;
L_17 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_16, NULL);
Exception_t* L_18 = V_2;
Exception_t* L_19;
L_19 = ExprException_DatavalueConvertion_m4048720B72239737E057BF0F3CEA7C48509235F1(L_15, L_17, L_18, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_0078:
{
RuntimeObject* L_20 = ___value0;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (((RuntimeType*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var))) };
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
Type_t* L_22;
L_22 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_21, NULL);
Exception_t* L_23;
L_23 = ExprException_DatavalueConvertion_m4048720B72239737E057BF0F3CEA7C48509235F1(L_20, L_22, (Exception_t*)NULL, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DataExpression_ToBoolean_m5D5A02169E3AD4BC5225BC0ED8B539CA6D2CF544_RuntimeMethod_var)));
}
IL_008a:
{
bool L_24 = V_1;
return L_24;
}
}
#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.Data.ExpressionNode::.ctor(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionNode__ctor_m283F3264481483CC47247AF2E8E012F055616698 (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
__this->____table_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_0), (void*)L_0);
return;
}
}
// System.IFormatProvider System.Data.ExpressionNode::get_FormatProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExpressionNode_get_FormatProvider_mF06AF4FC72B87EF5690438D857F3BF15834822CF (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_0;
if (L_0)
{
goto IL_0010;
}
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
return L_2;
}
IL_0010:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_3 = __this->____table_0;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = DataTable_get_FormatProvider_mDDD3E283FBF8EDEF604FA53499636745136CF414(L_3, NULL);
return L_4;
}
}
// System.Boolean System.Data.ExpressionNode::get_IsSqlColumn()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_get_IsSqlColumn_mD98590BEDB6BD5DA3B7147C4D1431E681FDEE0EA (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Data.DataTable System.Data.ExpressionNode::get_table()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9 (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_0;
return L_0;
}
}
// System.Void System.Data.ExpressionNode::BindTable(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionNode_BindTable_mE73D14C3A5AD6BBEAECD63E90C3828CB21DC71DC (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
__this->____table_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_0), (void*)L_0);
return;
}
}
// System.Boolean System.Data.ExpressionNode::DependsOn(System.Data.DataColumn)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_DependsOn_m763E12964EC23FC79FBE02960222EDC4BDFA1470 (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* ___column0, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Data.ExpressionNode::IsInteger(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsInteger_m90642E7E2762B628C16A1491F906A829726939CD (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)7)))
{
goto IL_0025;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)9))))
{
goto IL_0025;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)11))))
{
goto IL_0025;
}
}
{
int32_t L_3 = ___type0;
if ((((int32_t)L_3) == ((int32_t)8)))
{
goto IL_0025;
}
}
{
int32_t L_4 = ___type0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)10))))
{
goto IL_0025;
}
}
{
int32_t L_5 = ___type0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)12))))
{
goto IL_0025;
}
}
{
int32_t L_6 = ___type0;
if ((((int32_t)L_6) == ((int32_t)5)))
{
goto IL_0025;
}
}
{
int32_t L_7 = ___type0;
return (bool)((((int32_t)L_7) == ((int32_t)6))? 1 : 0);
}
IL_0025:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsIntegerSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsIntegerSql_m0EE6794F4908616B07067568323FB3B00AC0E5F7 (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)7)))
{
goto IL_0039;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)9))))
{
goto IL_0039;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)11))))
{
goto IL_0039;
}
}
{
int32_t L_3 = ___type0;
if ((((int32_t)L_3) == ((int32_t)8)))
{
goto IL_0039;
}
}
{
int32_t L_4 = ___type0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)10))))
{
goto IL_0039;
}
}
{
int32_t L_5 = ___type0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)12))))
{
goto IL_0039;
}
}
{
int32_t L_6 = ___type0;
if ((((int32_t)L_6) == ((int32_t)5)))
{
goto IL_0039;
}
}
{
int32_t L_7 = ___type0;
if ((((int32_t)L_7) == ((int32_t)6)))
{
goto IL_0039;
}
}
{
int32_t L_8 = ___type0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)37))))
{
goto IL_0039;
}
}
{
int32_t L_9 = ___type0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)36))))
{
goto IL_0039;
}
}
{
int32_t L_10 = ___type0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)35))))
{
goto IL_0039;
}
}
{
int32_t L_11 = ___type0;
return (bool)((((int32_t)L_11) == ((int32_t)((int32_t)28)))? 1 : 0);
}
IL_0039:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsSigned(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsSigned_m1B1A282CD60788B91EE3599C186D01D4D9CDDEA4 (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)7)))
{
goto IL_0019;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)9))))
{
goto IL_0019;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)11))))
{
goto IL_0019;
}
}
{
int32_t L_3 = ___type0;
if ((((int32_t)L_3) == ((int32_t)5)))
{
goto IL_0019;
}
}
{
int32_t L_4 = ___type0;
bool L_5;
L_5 = ExpressionNode_IsFloat_mA9D3A222DC25CEDDC92F034CF51CA5FB0DA0878F(L_4, NULL);
return L_5;
}
IL_0019:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsSignedSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsSignedSql_m089041F1A529C92B8B4085DCD5D2DA69960A538E (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)7)))
{
goto IL_0028;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)9))))
{
goto IL_0028;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)11))))
{
goto IL_0028;
}
}
{
int32_t L_3 = ___type0;
if ((((int32_t)L_3) == ((int32_t)5)))
{
goto IL_0028;
}
}
{
int32_t L_4 = ___type0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)37))))
{
goto IL_0028;
}
}
{
int32_t L_5 = ___type0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)36))))
{
goto IL_0028;
}
}
{
int32_t L_6 = ___type0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)35))))
{
goto IL_0028;
}
}
{
int32_t L_7 = ___type0;
bool L_8;
L_8 = ExpressionNode_IsFloatSql_mDB14C4D6ECEE99DBF9405A4009D9FF15BA3D984F(L_7, NULL);
return L_8;
}
IL_0028:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsUnsigned(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsUnsigned_m0BA16D62CCA17994F4CFEA9414649C87B702E087 (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)8)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)10))))
{
goto IL_0013;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)12))))
{
goto IL_0013;
}
}
{
int32_t L_3 = ___type0;
return (bool)((((int32_t)L_3) == ((int32_t)6))? 1 : 0);
}
IL_0013:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsUnsignedSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsUnsignedSql_mCE00B1EEFB206A53E6A0347520823CF2F31AB83E (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)8)))
{
goto IL_0018;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)10))))
{
goto IL_0018;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)12))))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___type0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)28))))
{
goto IL_0018;
}
}
{
int32_t L_4 = ___type0;
return (bool)((((int32_t)L_4) == ((int32_t)6))? 1 : 0);
}
IL_0018:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsNumeric(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsNumeric_m0AF895B1516C02207B519E56D8A3B3505DAD4509 (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
bool L_1;
L_1 = ExpressionNode_IsFloat_mA9D3A222DC25CEDDC92F034CF51CA5FB0DA0878F(L_0, NULL);
if (L_1)
{
goto IL_000f;
}
}
{
int32_t L_2 = ___type0;
bool L_3;
L_3 = ExpressionNode_IsInteger_m90642E7E2762B628C16A1491F906A829726939CD(L_2, NULL);
return L_3;
}
IL_000f:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsNumericSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsNumericSql_m4680B485888010B3286D385239051FE292099A52 (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
bool L_1;
L_1 = ExpressionNode_IsFloatSql_mDB14C4D6ECEE99DBF9405A4009D9FF15BA3D984F(L_0, NULL);
if (L_1)
{
goto IL_000f;
}
}
{
int32_t L_2 = ___type0;
bool L_3;
L_3 = ExpressionNode_IsIntegerSql_m0EE6794F4908616B07067568323FB3B00AC0E5F7(L_2, NULL);
return L_3;
}
IL_000f:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsFloat(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsFloat_mA9D3A222DC25CEDDC92F034CF51CA5FB0DA0878F (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)13))))
{
goto IL_0010;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)14))))
{
goto IL_0010;
}
}
{
int32_t L_2 = ___type0;
return (bool)((((int32_t)L_2) == ((int32_t)((int32_t)15)))? 1 : 0);
}
IL_0010:
{
return (bool)1;
}
}
// System.Boolean System.Data.ExpressionNode::IsFloatSql(System.Data.Common.StorageType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionNode_IsFloatSql_mDB14C4D6ECEE99DBF9405A4009D9FF15BA3D984F (int32_t ___type0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___type0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)13))))
{
goto IL_0024;
}
}
{
int32_t L_1 = ___type0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)14))))
{
goto IL_0024;
}
}
{
int32_t L_2 = ___type0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)15))))
{
goto IL_0024;
}
}
{
int32_t L_3 = ___type0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)33))))
{
goto IL_0024;
}
}
{
int32_t L_4 = ___type0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)32))))
{
goto IL_0024;
}
}
{
int32_t L_5 = ___type0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)38))))
{
goto IL_0024;
}
}
{
int32_t L_6 = ___type0;
return (bool)((((int32_t)L_6) == ((int32_t)((int32_t)39)))? 1 : 0);
}
IL_0024:
{
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
#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.Data.ExpressionParser::.ctor(System.Data.DataTable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser__ctor_m09792BDB75E8C301D63006FF1F47C6A9871ABD14 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->____escape_1 = ((int32_t)92);
__this->____decimalSeparator_2 = ((int32_t)46);
__this->____listSeparator_3 = ((int32_t)44);
__this->____exponentL_4 = ((int32_t)101);
__this->____exponentU_5 = ((int32_t)69);
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_0 = (OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880*)(OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880*)SZArrayNew(OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880_il2cpp_TypeInfo_var, (uint32_t)((int32_t)100));
__this->____ops_11 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____ops_11), (void*)L_0);
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* L_1 = (ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8*)(ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8*)SZArrayNew(ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8_il2cpp_TypeInfo_var, (uint32_t)((int32_t)100));
__this->____nodeStack_15 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____nodeStack_15), (void*)L_1);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_2 = ___table0;
__this->____table_14 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_14), (void*)L_2);
return;
}
}
// System.Void System.Data.ExpressionParser::LoadExpression(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_LoadExpression_m7302687C5B2BFDF3DF0424AD073DB8763200AFA1 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, String_t* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t* L_0 = ___data0;
if (L_0)
{
goto IL_0015;
}
}
{
V_0 = 0;
int32_t L_1 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_1, 1)));
__this->____text_6 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____text_6), (void*)L_2);
goto IL_0039;
}
IL_0015:
{
String_t* L_3 = ___data0;
NullCheck(L_3);
int32_t L_4;
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
V_0 = L_4;
int32_t L_5 = V_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add(L_5, 1)));
__this->____text_6 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->____text_6), (void*)L_6);
String_t* L_7 = ___data0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8 = __this->____text_6;
int32_t L_9 = V_0;
NullCheck(L_7);
String_CopyTo_m6E1DE99F2A6481B3B9839C8A026C74887C10A1DC(L_7, 0, L_8, 0, L_9, NULL);
}
IL_0039:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = __this->____text_6;
int32_t L_11 = V_0;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (Il2CppChar)0);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_12 = __this->____expression_17;
if (!L_12)
{
goto IL_0051;
}
}
{
__this->____expression_17 = (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expression_17), (void*)(ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL);
}
IL_0051:
{
return;
}
}
// System.Void System.Data.ExpressionParser::StartScan()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_StartScan_m85D88C4E98030219D22DEDA90D6AE5928FDE7EF1 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
__this->____op_10 = 0;
__this->____pos_7 = 0;
__this->____start_8 = 0;
__this->____topOperator_12 = 0;
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_0 = __this->____ops_11;
int32_t L_1 = __this->____topOperator_12;
V_0 = L_1;
int32_t L_2 = V_0;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_add(L_2, 1));
int32_t L_3 = V_0;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_4 = (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)il2cpp_codegen_object_new(OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
NullCheck(L_4);
OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B(L_4, 0, 0, 0, NULL);
NullCheck(L_0);
ArrayElementTypeCheck (L_0, L_4);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)L_4);
return;
}
}
// System.Data.ExpressionNode System.Data.ExpressionParser::Parse()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2342ED095E8746444A44CFCD5D8ACA13F0E7EEF8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* V_1 = NULL;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_2 = NULL;
String_t* V_3 = NULL;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_4 = NULL;
int32_t V_5 = 0;
String_t* V_6 = NULL;
String_t* V_7 = NULL;
int32_t V_8 = 0;
int32_t V_9 = 0;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_10 = NULL;
NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05* V_11 = NULL;
int32_t V_12 = 0;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_13 = NULL;
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* V_14 = NULL;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_15 = NULL;
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* V_16 = NULL;
String_t* V_17 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
Exception_t* G_B24_0 = NULL;
Exception_t* G_B23_0 = NULL;
int32_t G_B25_0 = 0;
{
__this->____expression_17 = (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expression_17), (void*)(ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL);
ExpressionParser_StartScan_m85D88C4E98030219D22DEDA90D6AE5928FDE7EF1(__this, NULL);
V_0 = 0;
goto IL_0797;
}
IL_0014:
{
int32_t L_0;
L_0 = ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC(__this, NULL);
int32_t L_1 = __this->____token_9;
V_5 = L_1;
int32_t L_2 = V_5;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, 1)))
{
case 0:
{
goto IL_00bc;
}
case 1:
{
goto IL_00bc;
}
case 2:
{
goto IL_00bc;
}
case 3:
{
goto IL_00bc;
}
case 4:
{
goto IL_076b;
}
case 5:
{
goto IL_00bc;
}
case 6:
{
goto IL_00bc;
}
case 7:
{
goto IL_055b;
}
case 8:
{
goto IL_034d;
}
case 9:
{
goto IL_049d;
}
case 10:
{
goto IL_068b;
}
case 11:
{
goto IL_0654;
}
case 12:
{
goto IL_05c6;
}
case 13:
{
goto IL_076b;
}
case 14:
{
goto IL_00bc;
}
case 15:
{
goto IL_06ec;
}
case 16:
{
goto IL_076b;
}
case 17:
{
goto IL_0079;
}
}
}
{
goto IL_076b;
}
IL_0079:
{
int32_t L_3 = __this->____prevOperand_16;
if (L_3)
{
goto IL_00a3;
}
}
{
int32_t L_4 = __this->____topNode_13;
if (!L_4)
{
goto IL_0797;
}
}
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_5 = __this->____ops_11;
int32_t L_6 = __this->____topOperator_12;
NullCheck(L_5);
int32_t L_7 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_1 = L_8;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_9 = V_1;
Exception_t* L_10;
L_10 = ExprException_MissingOperand_mC05F5E9D919124306622901BE24397C6DCCCA987(L_9, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_00a3:
{
ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A(__this, 3, NULL);
int32_t L_11 = __this->____topOperator_12;
if ((((int32_t)L_11) == ((int32_t)1)))
{
goto IL_0797;
}
}
{
Exception_t* L_12;
L_12 = ExprException_MissingRightParen_m692DDC407B9825B73F2571177A4EDD1BE3DFC4BE(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_00bc:
{
V_2 = (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL;
V_3 = (String_t*)NULL;
int32_t L_13 = __this->____prevOperand_16;
if (!L_13)
{
goto IL_00ec;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = __this->____text_6;
int32_t L_15 = __this->____start_8;
int32_t L_16 = __this->____pos_7;
int32_t L_17 = __this->____start_8;
String_t* L_18;
L_18 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_14, L_15, ((int32_t)il2cpp_codegen_subtract(L_16, L_17)), NULL);
Exception_t* L_19;
L_19 = ExprException_MissingOperator_m03917403253651CB09B232B4B10CF24E02826200(L_18, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_00ec:
{
int32_t L_20 = __this->____topOperator_12;
if ((((int32_t)L_20) <= ((int32_t)0)))
{
goto IL_0127;
}
}
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_21 = __this->____ops_11;
int32_t L_22 = __this->____topOperator_12;
NullCheck(L_21);
int32_t L_23 = ((int32_t)il2cpp_codegen_subtract(L_22, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
V_1 = L_24;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_25 = V_1;
NullCheck(L_25);
int32_t L_26 = L_25->____type_0;
if ((!(((uint32_t)L_26) == ((uint32_t)3))))
{
goto IL_0127;
}
}
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_27 = V_1;
NullCheck(L_27);
int32_t L_28 = L_27->____op_1;
if ((!(((uint32_t)L_28) == ((uint32_t)5))))
{
goto IL_0127;
}
}
{
int32_t L_29 = __this->____token_9;
if ((((int32_t)L_29) == ((int32_t)((int32_t)15))))
{
goto IL_0127;
}
}
{
Exception_t* L_30;
L_30 = ExprException_InWithoutParentheses_m6F0C42FC24BDCD1C519E67C24C985867E42488D8(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_0127:
{
__this->____prevOperand_16 = 1;
int32_t L_31 = __this->____token_9;
V_8 = L_31;
int32_t L_32 = V_8;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_32, 1)))
{
case 0:
{
goto IL_0217;
}
case 1:
{
goto IL_024a;
}
case 2:
{
goto IL_027c;
}
case 3:
{
goto IL_02ae;
}
case 4:
{
goto IL_0341;
}
case 5:
{
goto IL_02dd;
}
case 6:
{
goto IL_0310;
}
}
}
{
int32_t L_33 = V_8;
if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)15)))))
{
goto IL_0341;
}
}
{
}
try
{// begin try (depth: 1)
{
int32_t L_34;
L_34 = ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC(__this, NULL);
int32_t L_35 = __this->____token_9;
if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)9)))))
{
goto IL_01a8_1;
}
}
{
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, 1, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_36 = __this->____text_6;
int32_t L_37 = __this->____start_8;
int32_t L_38 = __this->____pos_7;
String_t* L_39;
L_39 = NameNode_ParseName_mEA8CDCCAA6228690021EDE8AC38BF853C04580E4(L_36, L_37, L_38, NULL);
V_6 = L_39;
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, ((int32_t)10), NULL);
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, ((int32_t)16), NULL);
goto IL_01b3_1;
}
IL_01a8_1:
{
V_6 = (String_t*)NULL;
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, ((int32_t)16), NULL);
}
IL_01b3_1:
{
goto IL_01d2;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
}
{// begin filter(depth: 1)
bool __filter_local = false;
try
{// begin implicit try block
{
Exception_t* L_40 = ((Exception_t*)IsInstClass((RuntimeObject*)((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))));
G_B23_0 = L_40;
if (L_40)
{
G_B24_0 = L_40;
goto IL_01c1;
}
}
{
G_B25_0 = 0;
goto IL_01c9;
}
IL_01c1:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ADP_t2C39CD1D5CEFC1B88FF6F7C7AD1916F0FD538CC0_il2cpp_TypeInfo_var)));
bool L_41;
L_41 = ADP_IsCatchableExceptionType_m7A0C2618DCBDE0DC74A29D0AF2FE50CAD9DEB4B2(G_B24_0, NULL);
G_B25_0 = ((!(((uint32_t)L_41) <= ((uint32_t)0)))? 1 : 0);
}
IL_01c9:
{
__filter_local = (G_B25_0) ? true : false;
}
}// end implicit try block
catch(Il2CppExceptionWrapper&)
{// begin implicit catch block
__filter_local = false;
}// end implicit catch block
if (__filter_local)
{
goto FILTER_01cb;
}
else
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
}// end filter (depth: 1)
FILTER_01cb:
{// begin catch(filter)
Exception_t* L_42;
L_42 = ExprException_LookupArgument_m6CA130A41EFEC533118EADC991F6F6D0CAA3CB3C(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_01d2:
{
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, 1, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_43 = __this->____text_6;
int32_t L_44 = __this->____start_8;
int32_t L_45 = __this->____pos_7;
String_t* L_46;
L_46 = NameNode_ParseName_mEA8CDCCAA6228690021EDE8AC38BF853C04580E4(L_43, L_44, L_45, NULL);
V_7 = L_46;
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_47 = __this->____ops_11;
int32_t L_48 = __this->____topOperator_12;
NullCheck(L_47);
int32_t L_49 = ((int32_t)il2cpp_codegen_subtract(L_48, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
V_1 = L_50;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_51 = __this->____table_14;
String_t* L_52 = V_7;
String_t* L_53 = V_6;
LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598* L_54 = (LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598*)il2cpp_codegen_object_new(LookupNode_t5D2F3718D344ABEABC8ED9A93702FC26BACC0598_il2cpp_TypeInfo_var);
NullCheck(L_54);
LookupNode__ctor_m77FE593F461106CDFC13CBAF84B98C9797BA2462(L_54, L_51, L_52, L_53, NULL);
V_2 = L_54;
goto IL_0341;
}
IL_0217:
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_55 = __this->____ops_11;
int32_t L_56 = __this->____topOperator_12;
NullCheck(L_55);
int32_t L_57 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
V_1 = L_58;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_59 = __this->____table_14;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_60 = __this->____text_6;
int32_t L_61 = __this->____start_8;
int32_t L_62 = __this->____pos_7;
NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05* L_63 = (NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05*)il2cpp_codegen_object_new(NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_il2cpp_TypeInfo_var);
NullCheck(L_63);
NameNode__ctor_m04929B7D83559A1EF9DF55BDD42E6D674D0426DD(L_63, L_59, L_60, L_61, L_62, NULL);
V_2 = L_63;
goto IL_0341;
}
IL_024a:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64 = __this->____text_6;
int32_t L_65 = __this->____start_8;
int32_t L_66 = __this->____pos_7;
int32_t L_67 = __this->____start_8;
String_t* L_68;
L_68 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_64, L_65, ((int32_t)il2cpp_codegen_subtract(L_66, L_67)), NULL);
V_3 = L_68;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_69 = __this->____table_14;
String_t* L_70 = V_3;
ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* L_71 = (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)il2cpp_codegen_object_new(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
NullCheck(L_71);
ConstNode__ctor_m7C6B1B19AD635A224B7EC3ED00C4EF906E1E3A10(L_71, L_69, 2, L_70, NULL);
V_2 = L_71;
goto IL_0341;
}
IL_027c:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_72 = __this->____text_6;
int32_t L_73 = __this->____start_8;
int32_t L_74 = __this->____pos_7;
int32_t L_75 = __this->____start_8;
String_t* L_76;
L_76 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_72, L_73, ((int32_t)il2cpp_codegen_subtract(L_74, L_75)), NULL);
V_3 = L_76;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_77 = __this->____table_14;
String_t* L_78 = V_3;
ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* L_79 = (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)il2cpp_codegen_object_new(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
NullCheck(L_79);
ConstNode__ctor_m7C6B1B19AD635A224B7EC3ED00C4EF906E1E3A10(L_79, L_77, 5, L_78, NULL);
V_2 = L_79;
goto IL_0341;
}
IL_02ae:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_80 = __this->____text_6;
int32_t L_81 = __this->____start_8;
int32_t L_82 = __this->____pos_7;
int32_t L_83 = __this->____start_8;
String_t* L_84;
L_84 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_80, L_81, ((int32_t)il2cpp_codegen_subtract(L_82, L_83)), NULL);
V_3 = L_84;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_85 = __this->____table_14;
String_t* L_86 = V_3;
ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* L_87 = (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)il2cpp_codegen_object_new(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
NullCheck(L_87);
ConstNode__ctor_m7C6B1B19AD635A224B7EC3ED00C4EF906E1E3A10(L_87, L_85, 4, L_86, NULL);
V_2 = L_87;
goto IL_0341;
}
IL_02dd:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_88 = __this->____text_6;
int32_t L_89 = __this->____start_8;
int32_t L_90 = __this->____pos_7;
int32_t L_91 = __this->____start_8;
String_t* L_92;
L_92 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_88, ((int32_t)il2cpp_codegen_add(L_89, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_90, L_91)), 2)), NULL);
V_3 = L_92;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_93 = __this->____table_14;
String_t* L_94 = V_3;
ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* L_95 = (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)il2cpp_codegen_object_new(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
NullCheck(L_95);
ConstNode__ctor_m7C6B1B19AD635A224B7EC3ED00C4EF906E1E3A10(L_95, L_93, 3, L_94, NULL);
V_2 = L_95;
goto IL_0341;
}
IL_0310:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_96 = __this->____text_6;
int32_t L_97 = __this->____start_8;
int32_t L_98 = __this->____pos_7;
int32_t L_99 = __this->____start_8;
String_t* L_100;
L_100 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_96, ((int32_t)il2cpp_codegen_add(L_97, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_98, L_99)), 2)), NULL);
V_3 = L_100;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_101 = __this->____table_14;
String_t* L_102 = V_3;
ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426* L_103 = (ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426*)il2cpp_codegen_object_new(ConstNode_t9063DADCD9C2FC188F898B8EFBD918E634BE0426_il2cpp_TypeInfo_var);
NullCheck(L_103);
ConstNode__ctor_m7C6B1B19AD635A224B7EC3ED00C4EF906E1E3A10(L_103, L_101, 7, L_102, NULL);
V_2 = L_103;
}
IL_0341:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_104 = V_2;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_104, NULL);
goto IL_0014;
}
IL_034d:
{
int32_t L_105 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_105, 1));
int32_t L_106 = __this->____prevOperand_16;
if (L_106)
{
goto IL_03e7;
}
}
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_107 = __this->____ops_11;
int32_t L_108 = __this->____topOperator_12;
NullCheck(L_107);
int32_t L_109 = ((int32_t)il2cpp_codegen_subtract(L_108, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_110 = (L_107)->GetAt(static_cast<il2cpp_array_size_t>(L_109));
V_1 = L_110;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_111 = V_1;
NullCheck(L_111);
int32_t L_112 = L_111->____type_0;
if ((!(((uint32_t)L_112) == ((uint32_t)3))))
{
goto IL_03be;
}
}
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_113 = V_1;
NullCheck(L_113);
int32_t L_114 = L_113->____op_1;
if ((!(((uint32_t)L_114) == ((uint32_t)5))))
{
goto IL_03be;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_115 = __this->____table_14;
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_116 = (FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)il2cpp_codegen_object_new(FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var);
NullCheck(L_116);
FunctionNode__ctor_mCFF765D875CD16A27717F43CBA1E646FC3E34436(L_116, L_115, _stringLiteral2342ED095E8746444A44CFCD5D8ACA13F0E7EEF8, NULL);
V_2 = L_116;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_117 = V_2;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_117, NULL);
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_118 = __this->____ops_11;
int32_t L_119 = __this->____topOperator_12;
V_9 = L_119;
int32_t L_120 = V_9;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_add(L_120, 1));
int32_t L_121 = V_9;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_122 = (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)il2cpp_codegen_object_new(OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
NullCheck(L_122);
OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B(L_122, 6, 0, 2, NULL);
NullCheck(L_118);
ArrayElementTypeCheck (L_118, L_122);
(L_118)->SetAt(static_cast<il2cpp_array_size_t>(L_121), (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)L_122);
goto IL_0014;
}
IL_03be:
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_123 = __this->____ops_11;
int32_t L_124 = __this->____topOperator_12;
V_9 = L_124;
int32_t L_125 = V_9;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_add(L_125, 1));
int32_t L_126 = V_9;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_127 = (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)il2cpp_codegen_object_new(OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
NullCheck(L_127);
OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B(L_127, ((int32_t)9), 0, 2, NULL);
NullCheck(L_123);
ArrayElementTypeCheck (L_123, L_127);
(L_123)->SetAt(static_cast<il2cpp_array_size_t>(L_126), (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)L_127);
goto IL_0014;
}
IL_03e7:
{
ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A(__this, ((int32_t)22), NULL);
__this->____prevOperand_16 = 0;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_128;
L_128 = ExpressionParser_NodePeek_mCE1ADD5E5CC8BA52B5B23D495EECEE4B86C00DEA(__this, NULL);
V_10 = L_128;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_129 = V_10;
if (!L_129)
{
goto IL_041a;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_130 = V_10;
NullCheck(L_130);
Type_t* L_131;
L_131 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_130, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_132 = { reinterpret_cast<intptr_t> (NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_133;
L_133 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_132, NULL);
bool L_134;
L_134 = Type_op_Inequality_m71AAC993EBBDBA44EE73847D68F71C70AF7AD1D5(L_131, L_133, NULL);
if (!L_134)
{
goto IL_0420;
}
}
IL_041a:
{
Exception_t* L_135;
L_135 = ExprException_SyntaxError_mFEFEB995F7EEE7DCAFE09C97120AB110D75429B4(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_135, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_0420:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_136;
L_136 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_11 = ((NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05*)CastclassSealed((RuntimeObject*)L_136, NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_il2cpp_TypeInfo_var));
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_137 = __this->____table_14;
NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05* L_138 = V_11;
NullCheck(L_138);
String_t* L_139 = L_138->____name_1;
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_140 = (FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)il2cpp_codegen_object_new(FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var);
NullCheck(L_140);
FunctionNode__ctor_mCFF765D875CD16A27717F43CBA1E646FC3E34436(L_140, L_137, L_139, NULL);
V_2 = L_140;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_141 = V_2;
NullCheck(((FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)CastclassSealed((RuntimeObject*)L_141, FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var)));
int32_t L_142;
L_142 = FunctionNode_get_Aggregate_m849B9719858B1D6FF7B6849C7E59F37CBE4F1F85(((FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)CastclassSealed((RuntimeObject*)L_141, FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var)), NULL);
V_12 = L_142;
int32_t L_143 = V_12;
if ((((int32_t)L_143) == ((int32_t)(-1))))
{
goto IL_046e;
}
}
{
int32_t L_144 = V_12;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_145;
L_145 = ExpressionParser_ParseAggregateArgument_m06ABF8D32700EA9192953A4F5A23B262F0758898(__this, L_144, NULL);
V_2 = L_145;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_146 = V_2;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_146, NULL);
__this->____prevOperand_16 = 2;
goto IL_0014;
}
IL_046e:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_147 = V_2;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_147, NULL);
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_148 = __this->____ops_11;
int32_t L_149 = __this->____topOperator_12;
V_9 = L_149;
int32_t L_150 = V_9;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_add(L_150, 1));
int32_t L_151 = V_9;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_152 = (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)il2cpp_codegen_object_new(OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
NullCheck(L_152);
OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B(L_152, 6, 0, 2, NULL);
NullCheck(L_148);
ArrayElementTypeCheck (L_148, L_152);
(L_148)->SetAt(static_cast<il2cpp_array_size_t>(L_151), (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)L_152);
goto IL_0014;
}
IL_049d:
{
int32_t L_153 = __this->____prevOperand_16;
if (!L_153)
{
goto IL_04ac;
}
}
{
ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A(__this, 3, NULL);
}
IL_04ac:
{
int32_t L_154 = __this->____topOperator_12;
if ((((int32_t)L_154) > ((int32_t)1)))
{
goto IL_04bb;
}
}
{
Exception_t* L_155;
L_155 = ExprException_TooManyRightParentheses_m1E04E101B0A37189B7C52FE7623EF10FD15DA069(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_155, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_04bb:
{
int32_t L_156 = __this->____topOperator_12;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_subtract(L_156, 1));
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_157 = __this->____ops_11;
int32_t L_158 = __this->____topOperator_12;
NullCheck(L_157);
int32_t L_159 = L_158;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_160 = (L_157)->GetAt(static_cast<il2cpp_array_size_t>(L_159));
V_1 = L_160;
int32_t L_161 = __this->____prevOperand_16;
if (L_161)
{
goto IL_04ef;
}
}
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_162 = V_1;
NullCheck(L_162);
int32_t L_163 = L_162->____type_0;
if ((((int32_t)L_163) == ((int32_t)6)))
{
goto IL_04ef;
}
}
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_164 = V_1;
Exception_t* L_165;
L_165 = ExprException_MissingOperand_mC05F5E9D919124306622901BE24397C6DCCCA987(L_164, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_165, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_04ef:
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_166 = V_1;
NullCheck(L_166);
int32_t L_167 = L_166->____type_0;
if ((!(((uint32_t)L_167) == ((uint32_t)6))))
{
goto IL_052f;
}
}
{
int32_t L_168 = __this->____prevOperand_16;
if (!L_168)
{
goto IL_054b;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_169;
L_169 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_13 = L_169;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_170;
L_170 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_14 = ((FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)CastclassSealed((RuntimeObject*)L_170, FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var));
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_171 = V_14;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_172 = V_13;
NullCheck(L_171);
FunctionNode_AddArgument_m5A095A40156F41331C8FDCFAFAE2E7C4D4B58D8B(L_171, L_172, NULL);
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_173 = V_14;
NullCheck(L_173);
FunctionNode_Check_mE261E8EC6C145F4411DCF7DEB63469D1BA29838D(L_173, NULL);
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_174 = V_14;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_174, NULL);
goto IL_054b;
}
IL_052f:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_175;
L_175 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_2 = L_175;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_176 = __this->____table_14;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_177 = V_2;
UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE* L_178 = (UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE*)il2cpp_codegen_object_new(UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var);
NullCheck(L_178);
UnaryNode__ctor_m77C651F96250E6A7FE2002232502399E8659D75D(L_178, L_176, 0, L_177, NULL);
V_2 = L_178;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_179 = V_2;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_179, NULL);
}
IL_054b:
{
__this->____prevOperand_16 = 2;
int32_t L_180 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_180, 1));
goto IL_0014;
}
IL_055b:
{
int32_t L_181 = __this->____prevOperand_16;
if (L_181)
{
goto IL_056e;
}
}
{
Exception_t* L_182;
L_182 = ExprException_MissingOperandBefore_m5E5297371F84D6EF9D6B4C26F5855BCF4E2E9C29(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_182, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_056e:
{
ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A(__this, 3, NULL);
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_183 = __this->____ops_11;
int32_t L_184 = __this->____topOperator_12;
NullCheck(L_183);
int32_t L_185 = ((int32_t)il2cpp_codegen_subtract(L_184, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_186 = (L_183)->GetAt(static_cast<il2cpp_array_size_t>(L_185));
V_1 = L_186;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_187 = V_1;
NullCheck(L_187);
int32_t L_188 = L_187->____type_0;
if ((((int32_t)L_188) == ((int32_t)6)))
{
goto IL_0594;
}
}
{
Exception_t* L_189;
L_189 = ExprException_SyntaxError_mFEFEB995F7EEE7DCAFE09C97120AB110D75429B4(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_189, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_0594:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_190;
L_190 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_15 = L_190;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_191;
L_191 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_16 = ((FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762*)CastclassSealed((RuntimeObject*)L_191, FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762_il2cpp_TypeInfo_var));
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_192 = V_16;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_193 = V_15;
NullCheck(L_192);
FunctionNode_AddArgument_m5A095A40156F41331C8FDCFAFAE2E7C4D4B58D8B(L_192, L_193, NULL);
FunctionNode_tC8525D61DE7B727405041623289EB5ECA7A9C762* L_194 = V_16;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_194, NULL);
__this->____prevOperand_16 = 0;
goto IL_0014;
}
IL_05c6:
{
int32_t L_195 = __this->____prevOperand_16;
if (L_195)
{
goto IL_0605;
}
}
{
int32_t L_196 = __this->____op_10;
if ((!(((uint32_t)L_196) == ((uint32_t)((int32_t)15)))))
{
goto IL_05e1;
}
}
{
__this->____op_10 = 2;
goto IL_0654;
}
IL_05e1:
{
int32_t L_197 = __this->____op_10;
if ((!(((uint32_t)L_197) == ((uint32_t)((int32_t)16)))))
{
goto IL_05f4;
}
}
{
__this->____op_10 = 1;
goto IL_0654;
}
IL_05f4:
{
int32_t L_198 = __this->____op_10;
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var)));
String_t* L_199;
L_199 = Operators_ToString_mD7A0CD214F8C00FE2820A7548172590C8CFFB678(L_198, NULL);
Exception_t* L_200;
L_200 = ExprException_MissingOperandBefore_m5E5297371F84D6EF9D6B4C26F5855BCF4E2E9C29(L_199, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_200, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_0605:
{
__this->____prevOperand_16 = 0;
int32_t L_201 = __this->____op_10;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
int32_t L_202;
L_202 = Operators_Priority_m55C4927F0C0862969909D9DFA2BE6444958E577D(L_201, NULL);
ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A(__this, L_202, NULL);
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_203 = __this->____ops_11;
int32_t L_204 = __this->____topOperator_12;
V_9 = L_204;
int32_t L_205 = V_9;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_add(L_205, 1));
int32_t L_206 = V_9;
int32_t L_207 = __this->____op_10;
int32_t L_208 = __this->____op_10;
int32_t L_209;
L_209 = Operators_Priority_m55C4927F0C0862969909D9DFA2BE6444958E577D(L_208, NULL);
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_210 = (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)il2cpp_codegen_object_new(OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
NullCheck(L_210);
OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B(L_210, 3, L_207, L_209, NULL);
NullCheck(L_203);
ArrayElementTypeCheck (L_203, L_210);
(L_203)->SetAt(static_cast<il2cpp_array_size_t>(L_206), (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)L_210);
goto IL_0014;
}
IL_0654:
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_211 = __this->____ops_11;
int32_t L_212 = __this->____topOperator_12;
V_9 = L_212;
int32_t L_213 = V_9;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_add(L_213, 1));
int32_t L_214 = V_9;
int32_t L_215 = __this->____op_10;
int32_t L_216 = __this->____op_10;
il2cpp_codegen_runtime_class_init_inline(Operators_tF28485BC2B1176C9AFEA3F94F70F8843DFA953A3_il2cpp_TypeInfo_var);
int32_t L_217;
L_217 = Operators_Priority_m55C4927F0C0862969909D9DFA2BE6444958E577D(L_216, NULL);
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_218 = (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)il2cpp_codegen_object_new(OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
NullCheck(L_218);
OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B(L_218, 1, L_215, L_217, NULL);
NullCheck(L_211);
ArrayElementTypeCheck (L_211, L_218);
(L_211)->SetAt(static_cast<il2cpp_array_size_t>(L_214), (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)L_218);
goto IL_0014;
}
IL_068b:
{
int32_t L_219 = __this->____prevOperand_16;
if (!L_219)
{
goto IL_06b7;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_220 = __this->____text_6;
int32_t L_221 = __this->____start_8;
int32_t L_222 = __this->____pos_7;
int32_t L_223 = __this->____start_8;
String_t* L_224;
L_224 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_220, L_221, ((int32_t)il2cpp_codegen_subtract(L_222, L_223)), NULL);
Exception_t* L_225;
L_225 = ExprException_MissingOperator_m03917403253651CB09B232B4B10CF24E02826200(L_224, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_225, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_06b7:
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_226 = __this->____ops_11;
int32_t L_227 = __this->____topOperator_12;
V_9 = L_227;
int32_t L_228 = V_9;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_add(L_228, 1));
int32_t L_229 = V_9;
int32_t L_230 = __this->____op_10;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_231 = (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)il2cpp_codegen_object_new(OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054_il2cpp_TypeInfo_var);
NullCheck(L_231);
OperatorInfo__ctor_mC4D03F4D07A3AEFD0AFC86E46A6BA020A71FB87B(L_231, 5, L_230, ((int32_t)24), NULL);
NullCheck(L_226);
ArrayElementTypeCheck (L_226, L_231);
(L_226)->SetAt(static_cast<il2cpp_array_size_t>(L_229), (OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054*)L_231);
__this->____prevOperand_16 = 2;
goto IL_0014;
}
IL_06ec:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_232;
L_232 = ExpressionParser_NodePeek_mCE1ADD5E5CC8BA52B5B23D495EECEE4B86C00DEA(__this, NULL);
V_4 = L_232;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_233 = V_4;
if (!L_233)
{
goto IL_076b;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_234 = V_4;
NullCheck(L_234);
Type_t* L_235;
L_235 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_234, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_236 = { reinterpret_cast<intptr_t> (NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_237;
L_237 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_236, NULL);
bool L_238;
L_238 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_235, L_237, NULL);
if (!L_238)
{
goto IL_076b;
}
}
{
int32_t L_239;
L_239 = ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC(__this, NULL);
int32_t L_240 = __this->____token_9;
if ((!(((uint32_t)L_240) == ((uint32_t)1))))
{
goto IL_076b;
}
}
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_241;
L_241 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
NullCheck(((NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05*)CastclassSealed((RuntimeObject*)L_241, NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_il2cpp_TypeInfo_var)));
String_t* L_242 = ((NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05*)CastclassSealed((RuntimeObject*)L_241, NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_il2cpp_TypeInfo_var))->____name_1;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_243 = __this->____text_6;
int32_t L_244 = __this->____start_8;
int32_t L_245 = __this->____pos_7;
String_t* L_246;
L_246 = NameNode_ParseName_mEA8CDCCAA6228690021EDE8AC38BF853C04580E4(L_243, L_244, L_245, NULL);
String_t* L_247;
L_247 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_242, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, L_246, NULL);
V_17 = L_247;
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_248 = __this->____table_14;
String_t* L_249 = V_17;
NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05* L_250 = (NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05*)il2cpp_codegen_object_new(NameNode_tFFE53AC842315A80CB3A2EC2BB84167C7F52DA05_il2cpp_TypeInfo_var);
NullCheck(L_250);
NameNode__ctor_mE9D8C907BB315B070EE71CD853FD171ACBCAAAEB(L_250, L_248, L_249, NULL);
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_250, NULL);
goto IL_0014;
}
IL_076b:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_251 = __this->____text_6;
int32_t L_252 = __this->____start_8;
int32_t L_253 = __this->____pos_7;
int32_t L_254 = __this->____start_8;
String_t* L_255;
L_255 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_251, L_252, ((int32_t)il2cpp_codegen_subtract(L_253, L_254)), NULL);
int32_t L_256 = __this->____start_8;
Exception_t* L_257;
L_257 = ExprException_UnknownToken_mF4B8012A9BEF5FEEEC9E15F6553D5B7DF384DB38(L_255, ((int32_t)il2cpp_codegen_add(L_256, 1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_257, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Parse_m4C6EAA31A6D7B781310F6C9907A10B3A6BA2C8D8_RuntimeMethod_var)));
}
IL_0797:
{
int32_t L_258 = __this->____token_9;
if ((!(((uint32_t)L_258) == ((uint32_t)((int32_t)18)))))
{
goto IL_0014;
}
}
{
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* L_259 = __this->____nodeStack_15;
NullCheck(L_259);
int32_t L_260 = 0;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_261 = (L_259)->GetAt(static_cast<il2cpp_array_size_t>(L_260));
__this->____expression_17 = L_261;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expression_17), (void*)L_261);
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_262 = __this->____expression_17;
return L_262;
}
}
// System.Data.ExpressionNode System.Data.ExpressionParser::ParseAggregateArgument(System.Data.FunctionId)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_ParseAggregateArgument_m06ABF8D32700EA9192953A4F5A23B262F0758898 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___aggregate0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
Exception_t* G_B11_0 = NULL;
Exception_t* G_B10_0 = NULL;
int32_t G_B12_0 = 0;
{
int32_t L_0;
L_0 = ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC(__this, NULL);
}
try
{// begin try (depth: 1)
{
int32_t L_1 = __this->____token_9;
if ((((int32_t)L_1) == ((int32_t)((int32_t)14))))
{
goto IL_0053_1;
}
}
{
int32_t L_2 = __this->____token_9;
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_0020_1;
}
}
{
Exception_t* L_3;
L_3 = ExprException_AggregateArgument_m0F897E68E7B6A37DF48314651ACB5821DF5C4E9B(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_ParseAggregateArgument_m06ABF8D32700EA9192953A4F5A23B262F0758898_RuntimeMethod_var)));
}
IL_0020_1:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->____text_6;
int32_t L_5 = __this->____start_8;
int32_t L_6 = __this->____pos_7;
String_t* L_7;
L_7 = NameNode_ParseName_mEA8CDCCAA6228690021EDE8AC38BF853C04580E4(L_4, L_5, L_6, NULL);
V_2 = L_7;
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, ((int32_t)10), NULL);
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_8 = __this->____table_14;
int32_t L_9 = ___aggregate0;
String_t* L_10 = V_2;
AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* L_11 = (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3*)il2cpp_codegen_object_new(AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3_il2cpp_TypeInfo_var);
NullCheck(L_11);
AggregateNode__ctor_m3BF534146DE8C7EA20963F22EEDCFFB4E538A728(L_11, L_8, L_9, L_10, NULL);
V_3 = L_11;
goto IL_010a;
}
IL_0053_1:
{
int32_t L_12 = __this->____token_9;
V_0 = (bool)((((int32_t)L_12) == ((int32_t)((int32_t)14)))? 1 : 0);
__this->____prevOperand_16 = 1;
int32_t L_13;
L_13 = ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC(__this, NULL);
int32_t L_14 = __this->____token_9;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)9)))))
{
goto IL_00a7_1;
}
}
{
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, 1, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = __this->____text_6;
int32_t L_16 = __this->____start_8;
int32_t L_17 = __this->____pos_7;
String_t* L_18;
L_18 = NameNode_ParseName_mEA8CDCCAA6228690021EDE8AC38BF853C04580E4(L_15, L_16, L_17, NULL);
V_1 = L_18;
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, ((int32_t)10), NULL);
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, ((int32_t)16), NULL);
goto IL_00b1_1;
}
IL_00a7_1:
{
V_1 = (String_t*)NULL;
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, ((int32_t)16), NULL);
}
IL_00b1_1:
{
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, 1, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = __this->____text_6;
int32_t L_20 = __this->____start_8;
int32_t L_21 = __this->____pos_7;
String_t* L_22;
L_22 = NameNode_ParseName_mEA8CDCCAA6228690021EDE8AC38BF853C04580E4(L_19, L_20, L_21, NULL);
V_2 = L_22;
ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354(__this, ((int32_t)10), NULL);
goto IL_00f7;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
}
{// begin filter(depth: 1)
bool __filter_local = false;
try
{// begin implicit try block
{
Exception_t* L_23 = ((Exception_t*)IsInstClass((RuntimeObject*)((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)), ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))));
G_B10_0 = L_23;
if (L_23)
{
G_B11_0 = L_23;
goto IL_00e6;
}
}
{
G_B12_0 = 0;
goto IL_00ee;
}
IL_00e6:
{
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ADP_t2C39CD1D5CEFC1B88FF6F7C7AD1916F0FD538CC0_il2cpp_TypeInfo_var)));
bool L_24;
L_24 = ADP_IsCatchableExceptionType_m7A0C2618DCBDE0DC74A29D0AF2FE50CAD9DEB4B2(G_B11_0, NULL);
G_B12_0 = ((!(((uint32_t)L_24) <= ((uint32_t)0)))? 1 : 0);
}
IL_00ee:
{
__filter_local = (G_B12_0) ? true : false;
}
}// end implicit try block
catch(Il2CppExceptionWrapper&)
{// begin implicit catch block
__filter_local = false;
}// end implicit catch block
if (__filter_local)
{
goto FILTER_00f0;
}
else
{
IL2CPP_RAISE_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_ParseAggregateArgument_m06ABF8D32700EA9192953A4F5A23B262F0758898_RuntimeMethod_var)));
}
}// end filter (depth: 1)
FILTER_00f0:
{// begin catch(filter)
Exception_t* L_25;
L_25 = ExprException_AggregateArgument_m0F897E68E7B6A37DF48314651ACB5821DF5C4E9B(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_ParseAggregateArgument_m06ABF8D32700EA9192953A4F5A23B262F0758898_RuntimeMethod_var)));
}// end catch (depth: 1)
IL_00f7:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_26 = __this->____table_14;
int32_t L_27 = ___aggregate0;
String_t* L_28 = V_2;
bool L_29 = V_0;
String_t* L_30 = V_1;
AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3* L_31 = (AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3*)il2cpp_codegen_object_new(AggregateNode_tDF993665905B71BFA7DE01E9B5E7007D7FFB2FC3_il2cpp_TypeInfo_var);
NullCheck(L_31);
AggregateNode__ctor_m17BD752374AEA6599A53DAE3114FBC1FA4EA7298(L_31, L_26, L_27, L_28, (bool)((((int32_t)L_29) == ((int32_t)0))? 1 : 0), L_30, NULL);
return L_31;
}
IL_010a:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_32 = V_3;
return L_32;
}
}
// System.Data.ExpressionNode System.Data.ExpressionParser::NodePop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* L_0 = __this->____nodeStack_15;
int32_t L_1 = __this->____topNode_13;
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
int32_t L_2 = V_0;
__this->____topNode_13 = L_2;
int32_t L_3 = V_0;
NullCheck(L_0);
int32_t L_4 = L_3;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
// System.Data.ExpressionNode System.Data.ExpressionParser::NodePeek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ExpressionParser_NodePeek_mCE1ADD5E5CC8BA52B5B23D495EECEE4B86C00DEA (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____topNode_13;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_000b;
}
}
{
return (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL;
}
IL_000b:
{
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* L_1 = __this->____nodeStack_15;
int32_t L_2 = __this->____topNode_13;
NullCheck(L_1);
int32_t L_3 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// System.Void System.Data.ExpressionParser::NodePush(System.Data.ExpressionNode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* ___node0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->____topNode_13;
if ((((int32_t)L_0) < ((int32_t)((int32_t)98))))
{
goto IL_0010;
}
}
{
Exception_t* L_1;
L_1 = ExprException_ExpressionTooComplex_mAB9B191AFCF0D02EF725740724D22404E8F7F40D(NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE_RuntimeMethod_var)));
}
IL_0010:
{
ExpressionNodeU5BU5D_t8CD9347C6AC09C193F6FBFCD7DFE5F255D641EA8* L_2 = __this->____nodeStack_15;
int32_t L_3 = __this->____topNode_13;
V_0 = L_3;
int32_t L_4 = V_0;
__this->____topNode_13 = ((int32_t)il2cpp_codegen_add(L_4, 1));
int32_t L_5 = V_0;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_6 = ___node0;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_6);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)L_6);
return;
}
}
// System.Void System.Data.ExpressionParser::BuildExpression(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___pri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_0 = NULL;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* V_1 = NULL;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_2 = NULL;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
V_0 = (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL;
}
IL_0002:
{
OperatorInfoU5BU5D_tBABD1B3A602C8EA7DDE3B7F0D8A4A4DFA0147880* L_0 = __this->____ops_11;
int32_t L_1 = __this->____topOperator_12;
NullCheck(L_0);
int32_t L_2 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_4 = V_1;
NullCheck(L_4);
int32_t L_5 = L_4->____priority_2;
int32_t L_6 = ___pri0;
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
goto IL_016f;
}
}
{
int32_t L_7 = __this->____topOperator_12;
__this->____topOperator_12 = ((int32_t)il2cpp_codegen_subtract(L_7, 1));
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_8 = V_1;
NullCheck(L_8);
int32_t L_9 = L_8->____type_0;
V_4 = L_9;
int32_t L_10 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_10, 1)))
{
case 0:
{
goto IL_0115;
}
case 1:
{
goto IL_016f;
}
case 2:
{
goto IL_0052;
}
case 3:
{
goto IL_016f;
}
case 4:
{
goto IL_0157;
}
}
}
{
return;
}
IL_0052:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_11;
L_11 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_3 = L_11;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_12;
L_12 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_2 = L_12;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_13 = V_1;
NullCheck(L_13);
int32_t L_14 = L_13->____op_1;
V_5 = L_14;
int32_t L_15 = V_5;
switch (((int32_t)il2cpp_codegen_subtract(L_15, 4)))
{
case 0:
{
goto IL_00d3;
}
case 1:
{
goto IL_00df;
}
case 2:
{
goto IL_00d3;
}
case 3:
{
goto IL_00df;
}
case 4:
{
goto IL_00df;
}
case 5:
{
goto IL_00df;
}
case 6:
{
goto IL_00df;
}
case 7:
{
goto IL_00df;
}
case 8:
{
goto IL_00df;
}
case 9:
{
goto IL_00df;
}
case 10:
{
goto IL_00df;
}
case 11:
{
goto IL_00df;
}
case 12:
{
goto IL_00df;
}
case 13:
{
goto IL_00df;
}
case 14:
{
goto IL_00df;
}
case 15:
{
goto IL_00df;
}
case 16:
{
goto IL_00df;
}
case 17:
{
goto IL_00df;
}
case 18:
{
goto IL_00d3;
}
case 19:
{
goto IL_00d3;
}
case 20:
{
goto IL_00d3;
}
case 21:
{
goto IL_00d3;
}
case 22:
{
goto IL_00df;
}
case 23:
{
goto IL_00df;
}
}
}
{
goto IL_00df;
}
IL_00d3:
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_16 = V_1;
NullCheck(L_16);
int32_t L_17 = L_16->____op_1;
Exception_t* L_18;
L_18 = ExprException_UnsupportedOperator_mDDE1F2196F2A6017BDF518D9C6B6732E5907F61C(L_17, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A_RuntimeMethod_var)));
}
IL_00df:
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_19 = V_1;
NullCheck(L_19);
int32_t L_20 = L_19->____op_1;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)14)))))
{
goto IL_00ff;
}
}
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_21 = __this->____table_14;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_22 = V_1;
NullCheck(L_22);
int32_t L_23 = L_22->____op_1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_24 = V_2;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_25 = V_3;
LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001* L_26 = (LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001*)il2cpp_codegen_object_new(LikeNode_tCC12858E3042D59646C8429CA0B8A8583C5E8001_il2cpp_TypeInfo_var);
NullCheck(L_26);
LikeNode__ctor_m561044C413AA34C6A24589CE3E120AB65344E05A(L_26, L_21, L_23, L_24, L_25, NULL);
V_0 = L_26;
goto IL_0163;
}
IL_00ff:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_27 = __this->____table_14;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_28 = V_1;
NullCheck(L_28);
int32_t L_29 = L_28->____op_1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_30 = V_2;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_31 = V_3;
BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434* L_32 = (BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434*)il2cpp_codegen_object_new(BinaryNode_t3DCCF8A8D60415E4A7840794E4A436A1847F6434_il2cpp_TypeInfo_var);
NullCheck(L_32);
BinaryNode__ctor_m7514FA08A8C7CD203362FCAB2FE53C855B9BDFC7(L_32, L_27, L_29, L_30, L_31, NULL);
V_0 = L_32;
goto IL_0163;
}
IL_0115:
{
V_2 = (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31*)NULL;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_33;
L_33 = ExpressionParser_NodePop_m6C9BD177D678E6F3F4D0C7BC787E95E0E4312B8B(__this, NULL);
V_3 = L_33;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_34 = V_1;
NullCheck(L_34);
int32_t L_35 = L_34->____op_1;
V_5 = L_35;
int32_t L_36 = V_5;
if ((((int32_t)L_36) == ((int32_t)1)))
{
goto IL_0142;
}
}
{
int32_t L_37 = V_5;
if ((((int32_t)L_37) == ((int32_t)3)))
{
goto IL_0142;
}
}
{
int32_t L_38 = V_5;
if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)25)))))
{
goto IL_0142;
}
}
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_39 = V_1;
NullCheck(L_39);
int32_t L_40 = L_39->____op_1;
Exception_t* L_41;
L_41 = ExprException_UnsupportedOperator_mDDE1F2196F2A6017BDF518D9C6B6732E5907F61C(L_40, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_BuildExpression_m853B9DD5AC7738E5B2A1FF61E8A4DDDB5F6BC60A_RuntimeMethod_var)));
}
IL_0142:
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_42 = __this->____table_14;
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_43 = V_1;
NullCheck(L_43);
int32_t L_44 = L_43->____op_1;
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_45 = V_3;
UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE* L_46 = (UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE*)il2cpp_codegen_object_new(UnaryNode_t9B28C8CC1834B7C756EBE299CE2CFC1C845E66FE_il2cpp_TypeInfo_var);
NullCheck(L_46);
UnaryNode__ctor_m77C651F96250E6A7FE2002232502399E8659D75D(L_46, L_42, L_44, L_45, NULL);
V_0 = L_46;
goto IL_0163;
}
IL_0157:
{
OperatorInfo_t4BD7DBE5BC0BEA2933256855151EF404D454A054* L_47 = V_1;
NullCheck(L_47);
int32_t L_48 = L_47->____op_1;
ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8* L_49 = (ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8*)il2cpp_codegen_object_new(ZeroOpNode_tE36719E363E813DC2EB69B2BA556C1CA87EB23E8_il2cpp_TypeInfo_var);
NullCheck(L_49);
ZeroOpNode__ctor_m8C49A46AA06B141B47B0C18B78C226746F190F8A(L_49, L_48, NULL);
V_0 = L_49;
}
IL_0163:
{
ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* L_50 = V_0;
ExpressionParser_NodePush_m68413882FB1B7F0FDA6B2AFA75B4759E89FF99CE(__this, L_50, NULL);
goto IL_0002;
}
IL_016f:
{
return;
}
}
// System.Void System.Data.ExpressionParser::CheckToken(System.Data.Tokens)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___token0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____token_9;
int32_t L_1 = ___token0;
if ((((int32_t)L_0) == ((int32_t)L_1)))
{
goto IL_001c;
}
}
{
int32_t L_2 = ___token0;
int32_t L_3 = __this->____token_9;
int32_t L_4 = __this->____pos_7;
Exception_t* L_5;
L_5 = ExprException_UnknownToken_m7094C63D6C12F5FCE5E0D5EE6C5366D428456D86(L_2, L_3, L_4, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C_RuntimeMethod_var)));
}
IL_001c:
{
return;
}
}
// System.Data.Tokens System.Data.ExpressionParser::Scan()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral445AADBD1DC1F0B7B59D5C3003F14DD73F711022);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral54F4AAE0436CBCC0163FCF662535D64F6E0BB00C);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_1 = NULL;
int32_t V_2 = 0;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_1 = L_0;
__this->____token_9 = 0;
}
IL_000e:
{
int32_t L_1 = __this->____pos_7;
__this->____start_8 = L_1;
__this->____op_10 = 0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_1;
int32_t L_3 = __this->____pos_7;
V_2 = L_3;
int32_t L_4 = V_2;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_4, 1));
int32_t L_5 = V_2;
NullCheck(L_2);
int32_t L_6 = L_5;
uint16_t L_7 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_0 = L_7;
Il2CppChar L_8 = V_0;
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)62)))))
{
goto IL_00cd;
}
}
{
Il2CppChar L_9 = V_0;
if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)13)))))
{
goto IL_006a;
}
}
{
Il2CppChar L_10 = V_0;
if (!L_10)
{
goto IL_0104;
}
}
{
Il2CppChar L_11 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_11, ((int32_t)9))))
{
case 0:
{
goto IL_0111;
}
case 1:
{
goto IL_0111;
}
case 2:
{
goto IL_0311;
}
case 3:
{
goto IL_0311;
}
case 4:
{
goto IL_0111;
}
}
}
{
goto IL_0311;
}
IL_006a:
{
Il2CppChar L_12 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_12, ((int32_t)32))))
{
case 0:
{
goto IL_0111;
}
case 1:
{
goto IL_0311;
}
case 2:
{
goto IL_0311;
}
case 3:
{
goto IL_0136;
}
case 4:
{
goto IL_0311;
}
case 5:
{
goto IL_026e;
}
case 6:
{
goto IL_0283;
}
case 7:
{
goto IL_0148;
}
case 8:
{
goto IL_011c;
}
case 9:
{
goto IL_0129;
}
case 10:
{
goto IL_0244;
}
case 11:
{
goto IL_021a;
}
case 12:
{
goto IL_0311;
}
case 13:
{
goto IL_022f;
}
case 14:
{
goto IL_0311;
}
case 15:
{
goto IL_0259;
}
}
}
{
Il2CppChar L_13 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_13, ((int32_t)60))))
{
case 0:
{
goto IL_01b1;
}
case 1:
{
goto IL_015c;
}
case 2:
{
goto IL_0170;
}
}
}
{
goto IL_0311;
}
IL_00cd:
{
Il2CppChar L_14 = V_0;
if ((!(((uint32_t)L_14) <= ((uint32_t)((int32_t)94)))))
{
goto IL_00e7;
}
}
{
Il2CppChar L_15 = V_0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)91))))
{
goto IL_02d7;
}
}
{
Il2CppChar L_16 = V_0;
if ((((int32_t)L_16) == ((int32_t)((int32_t)94))))
{
goto IL_02ad;
}
}
{
goto IL_0311;
}
IL_00e7:
{
Il2CppChar L_17 = V_0;
if ((((int32_t)L_17) == ((int32_t)((int32_t)96))))
{
goto IL_02f6;
}
}
{
Il2CppChar L_18 = V_0;
if ((((int32_t)L_18) == ((int32_t)((int32_t)124))))
{
goto IL_0298;
}
}
{
Il2CppChar L_19 = V_0;
if ((((int32_t)L_19) == ((int32_t)((int32_t)126))))
{
goto IL_02c2;
}
}
{
goto IL_0311;
}
IL_0104:
{
__this->____token_9 = ((int32_t)18);
goto IL_03e5;
}
IL_0111:
{
ExpressionParser_ScanWhite_m16925FCBCE38342361228EA2D519121253BA7C9A(__this, NULL);
goto IL_000e;
}
IL_011c:
{
__this->____token_9 = ((int32_t)9);
goto IL_03e5;
}
IL_0129:
{
__this->____token_9 = ((int32_t)10);
goto IL_03e5;
}
IL_0136:
{
ExpressionParser_ScanDate_m31C7FE966DFFE6F5C0A1DF38D578DED1FFE62D8F(__this, NULL);
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, 7, NULL);
goto IL_03e5;
}
IL_0148:
{
ExpressionParser_ScanString_m1DAB500B142D64646DD19FD71E8200F23A75FAC3(__this, ((int32_t)39), NULL);
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, 6, NULL);
goto IL_03e5;
}
IL_015c:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = 7;
goto IL_03e5;
}
IL_0170:
{
__this->____token_9 = ((int32_t)13);
ExpressionParser_ScanWhite_m16925FCBCE38342361228EA2D519121253BA7C9A(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_1;
int32_t L_21 = __this->____pos_7;
NullCheck(L_20);
int32_t L_22 = L_21;
uint16_t L_23 = (uint16_t)(L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)61)))))
{
goto IL_01a5;
}
}
{
int32_t L_24 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_24, 1));
__this->____op_10 = ((int32_t)10);
goto IL_03e5;
}
IL_01a5:
{
__this->____op_10 = 8;
goto IL_03e5;
}
IL_01b1:
{
__this->____token_9 = ((int32_t)13);
ExpressionParser_ScanWhite_m16925FCBCE38342361228EA2D519121253BA7C9A(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = V_1;
int32_t L_26 = __this->____pos_7;
NullCheck(L_25);
int32_t L_27 = L_26;
uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)61)))))
{
goto IL_01e6;
}
}
{
int32_t L_29 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_29, 1));
__this->____op_10 = ((int32_t)11);
goto IL_03e5;
}
IL_01e6:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = V_1;
int32_t L_31 = __this->____pos_7;
NullCheck(L_30);
int32_t L_32 = L_31;
uint16_t L_33 = (uint16_t)(L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)62)))))
{
goto IL_020d;
}
}
{
int32_t L_34 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_34, 1));
__this->____op_10 = ((int32_t)12);
goto IL_03e5;
}
IL_020d:
{
__this->____op_10 = ((int32_t)9);
goto IL_03e5;
}
IL_021a:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)15);
goto IL_03e5;
}
IL_022f:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)16);
goto IL_03e5;
}
IL_0244:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)17);
goto IL_03e5;
}
IL_0259:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)18);
goto IL_03e5;
}
IL_026e:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)20);
goto IL_03e5;
}
IL_0283:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)22);
goto IL_03e5;
}
IL_0298:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)23);
goto IL_03e5;
}
IL_02ad:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)24);
goto IL_03e5;
}
IL_02c2:
{
__this->____token_9 = ((int32_t)13);
__this->____op_10 = ((int32_t)25);
goto IL_03e5;
}
IL_02d7:
{
Il2CppChar L_35 = __this->____escape_1;
ExpressionParser_ScanName_mEFA0FBE1A3DFB35EA2E34D88F2E89DAC1EBE9A42(__this, ((int32_t)93), L_35, _stringLiteral445AADBD1DC1F0B7B59D5C3003F14DD73F711022, NULL);
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, 1, NULL);
goto IL_03e5;
}
IL_02f6:
{
ExpressionParser_ScanName_mEFA0FBE1A3DFB35EA2E34D88F2E89DAC1EBE9A42(__this, ((int32_t)96), ((int32_t)96), _stringLiteral54F4AAE0436CBCC0163FCF662535D64F6E0BB00C, NULL);
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, 1, NULL);
goto IL_03e5;
}
IL_0311:
{
Il2CppChar L_36 = V_0;
Il2CppChar L_37 = __this->____listSeparator_3;
if ((!(((uint32_t)L_36) == ((uint32_t)L_37))))
{
goto IL_0326;
}
}
{
__this->____token_9 = 8;
goto IL_03e5;
}
IL_0326:
{
Il2CppChar L_38 = V_0;
if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)46)))))
{
goto IL_034b;
}
}
{
int32_t L_39 = __this->____prevOperand_16;
if (L_39)
{
goto IL_033e;
}
}
{
ExpressionParser_ScanNumeric_m410E7FF2D48DCAA3FE1898AF25DC7CC5C59A4270(__this, NULL);
goto IL_03e5;
}
IL_033e:
{
__this->____token_9 = ((int32_t)16);
goto IL_03e5;
}
IL_034b:
{
Il2CppChar L_40 = V_0;
if ((!(((uint32_t)L_40) == ((uint32_t)((int32_t)48)))))
{
goto IL_0377;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_41 = V_1;
int32_t L_42 = __this->____pos_7;
NullCheck(L_41);
int32_t L_43 = L_42;
uint16_t L_44 = (uint16_t)(L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
if ((((int32_t)L_44) == ((int32_t)((int32_t)120))))
{
goto IL_0368;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_45 = V_1;
int32_t L_46 = __this->____pos_7;
NullCheck(L_45);
int32_t L_47 = L_46;
uint16_t L_48 = (uint16_t)(L_45)->GetAt(static_cast<il2cpp_array_size_t>(L_47));
if ((!(((uint32_t)L_48) == ((uint32_t)((int32_t)88)))))
{
goto IL_0377;
}
}
IL_0368:
{
ExpressionParser_ScanBinaryConstant_m6D90E3F9C3BB379A57F1E04F99A61FB8E4A95B27(__this, NULL);
__this->____token_9 = 5;
goto IL_03e5;
}
IL_0377:
{
Il2CppChar L_49 = V_0;
bool L_50;
L_50 = ExpressionParser_IsDigit_m49E3AA446F0C7BD1CAC72553135A49523A336B43(__this, L_49, NULL);
if (!L_50)
{
goto IL_0388;
}
}
{
ExpressionParser_ScanNumeric_m410E7FF2D48DCAA3FE1898AF25DC7CC5C59A4270(__this, NULL);
goto IL_03e5;
}
IL_0388:
{
ExpressionParser_ScanReserved_mD3C734C9587954ECEC7ECE6726F714D361407263(__this, NULL);
int32_t L_51 = __this->____token_9;
if (L_51)
{
goto IL_03e5;
}
}
{
Il2CppChar L_52 = V_0;
bool L_53;
L_53 = ExpressionParser_IsAlphaNumeric_m63A7CB6AA8213D5EB99B70C5519FF5209688E857(__this, L_52, NULL);
if (!L_53)
{
goto IL_03b6;
}
}
{
ExpressionParser_ScanName_mA81442BDA327D8BD59E79C12474F008BE77EE6AC(__this, NULL);
int32_t L_54 = __this->____token_9;
if (!L_54)
{
goto IL_03b6;
}
}
{
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, 1, NULL);
goto IL_03e5;
}
IL_03b6:
{
__this->____token_9 = ((int32_t)17);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_55 = V_1;
int32_t L_56 = __this->____start_8;
int32_t L_57 = __this->____pos_7;
int32_t L_58 = __this->____start_8;
String_t* L_59;
L_59 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_55, L_56, ((int32_t)il2cpp_codegen_subtract(L_57, L_58)), NULL);
int32_t L_60 = __this->____start_8;
Exception_t* L_61;
L_61 = ExprException_UnknownToken_mF4B8012A9BEF5FEEEC9E15F6553D5B7DF384DB38(L_59, ((int32_t)il2cpp_codegen_add(L_60, 1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC_RuntimeMethod_var)));
}
IL_03e5:
{
int32_t L_62 = __this->____token_9;
return L_62;
}
}
// System.Void System.Data.ExpressionParser::ScanNumeric()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanNumeric_m410E7FF2D48DCAA3FE1898AF25DC7CC5C59A4270 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_0 = L_0;
V_1 = (bool)0;
V_2 = (bool)0;
goto IL_001b;
}
IL_000d:
{
int32_t L_1 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_001b:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_0;
int32_t L_3 = __this->____pos_7;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
bool L_6;
L_6 = ExpressionParser_IsDigit_m49E3AA446F0C7BD1CAC72553135A49523A336B43(__this, L_5, NULL);
if (L_6)
{
goto IL_000d;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = V_0;
int32_t L_8 = __this->____pos_7;
NullCheck(L_7);
int32_t L_9 = L_8;
uint16_t L_10 = (uint16_t)(L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
Il2CppChar L_11 = __this->____decimalSeparator_2;
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
{
goto IL_005b;
}
}
{
V_1 = (bool)1;
int32_t L_12 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_12, 1));
goto IL_005b;
}
IL_004d:
{
int32_t L_13 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_005b:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_14 = V_0;
int32_t L_15 = __this->____pos_7;
NullCheck(L_14);
int32_t L_16 = L_15;
uint16_t L_17 = (uint16_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
bool L_18;
L_18 = ExpressionParser_IsDigit_m49E3AA446F0C7BD1CAC72553135A49523A336B43(__this, L_17, NULL);
if (L_18)
{
goto IL_004d;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = V_0;
int32_t L_20 = __this->____pos_7;
NullCheck(L_19);
int32_t L_21 = L_20;
uint16_t L_22 = (uint16_t)(L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
Il2CppChar L_23 = __this->____exponentL_4;
if ((((int32_t)L_22) == ((int32_t)L_23)))
{
goto IL_008b;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = V_0;
int32_t L_25 = __this->____pos_7;
NullCheck(L_24);
int32_t L_26 = L_25;
uint16_t L_27 = (uint16_t)(L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
Il2CppChar L_28 = __this->____exponentU_5;
if ((!(((uint32_t)L_27) == ((uint32_t)L_28))))
{
goto IL_00e1;
}
}
IL_008b:
{
V_2 = (bool)1;
int32_t L_29 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_29, 1));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_30 = V_0;
int32_t L_31 = __this->____pos_7;
NullCheck(L_30);
int32_t L_32 = L_31;
uint16_t L_33 = (uint16_t)(L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
if ((((int32_t)L_33) == ((int32_t)((int32_t)45))))
{
goto IL_00b3;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_34 = V_0;
int32_t L_35 = __this->____pos_7;
NullCheck(L_34);
int32_t L_36 = L_35;
uint16_t L_37 = (uint16_t)(L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
if ((!(((uint32_t)L_37) == ((uint32_t)((int32_t)43)))))
{
goto IL_00d1;
}
}
IL_00b3:
{
int32_t L_38 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_38, 1));
goto IL_00d1;
}
IL_00c3:
{
int32_t L_39 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_39, 1));
}
IL_00d1:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_40 = V_0;
int32_t L_41 = __this->____pos_7;
NullCheck(L_40);
int32_t L_42 = L_41;
uint16_t L_43 = (uint16_t)(L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
bool L_44;
L_44 = ExpressionParser_IsDigit_m49E3AA446F0C7BD1CAC72553135A49523A336B43(__this, L_43, NULL);
if (L_44)
{
goto IL_00c3;
}
}
IL_00e1:
{
bool L_45 = V_2;
if (!L_45)
{
goto IL_00ec;
}
}
{
__this->____token_9 = 4;
return;
}
IL_00ec:
{
bool L_46 = V_1;
if (!L_46)
{
goto IL_00f7;
}
}
{
__this->____token_9 = 3;
return;
}
IL_00f7:
{
__this->____token_9 = 2;
return;
}
}
// System.Void System.Data.ExpressionParser::ScanName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanName_mA81442BDA327D8BD59E79C12474F008BE77EE6AC (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_0 = L_0;
goto IL_0017;
}
IL_0009:
{
int32_t L_1 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0017:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = V_0;
int32_t L_3 = __this->____pos_7;
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
bool L_6;
L_6 = ExpressionParser_IsAlphaNumeric_m63A7CB6AA8213D5EB99B70C5519FF5209688E857(__this, L_5, NULL);
if (L_6)
{
goto IL_0009;
}
}
{
__this->____token_9 = 1;
return;
}
}
// System.Void System.Data.ExpressionParser::ScanName(System.Char,System.Char,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanName_mEFA0FBE1A3DFB35EA2E34D88F2E89DAC1EBE9A42 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___chEnd0, Il2CppChar ___esc1, String_t* ___charsToEscape2, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_0 = L_0;
}
IL_0007:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = V_0;
int32_t L_2 = __this->____pos_7;
NullCheck(L_1);
int32_t L_3 = L_2;
uint16_t L_4 = (uint16_t)(L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
Il2CppChar L_5 = ___esc1;
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
{
goto IL_0040;
}
}
{
int32_t L_6 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = V_0;
NullCheck(L_7);
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_6, 1))) >= ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))
{
goto IL_0040;
}
}
{
String_t* L_8 = ___charsToEscape2;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = V_0;
int32_t L_10 = __this->____pos_7;
NullCheck(L_9);
int32_t L_11 = ((int32_t)il2cpp_codegen_add(L_10, 1));
uint16_t L_12 = (uint16_t)(L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_8);
int32_t L_13;
L_13 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_8, L_12, NULL);
if ((((int32_t)L_13) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
int32_t L_14 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_14, 1));
}
IL_0040:
{
int32_t L_15 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_15, 1));
int32_t L_16 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = V_0;
NullCheck(L_17);
if ((((int32_t)L_16) >= ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))
{
goto IL_0064;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = V_0;
int32_t L_19 = __this->____pos_7;
NullCheck(L_18);
int32_t L_20 = L_19;
uint16_t L_21 = (uint16_t)(L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
Il2CppChar L_22 = ___chEnd0;
if ((!(((uint32_t)L_21) == ((uint32_t)L_22))))
{
goto IL_0007;
}
}
IL_0064:
{
int32_t L_23 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = V_0;
NullCheck(L_24);
if ((((int32_t)L_23) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))
{
goto IL_0090;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_25 = V_0;
int32_t L_26 = __this->____start_8;
int32_t L_27 = __this->____pos_7;
int32_t L_28 = __this->____start_8;
String_t* L_29;
L_29 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_25, L_26, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_27, 1)), L_28)), NULL);
Exception_t* L_30;
L_30 = ExprException_InvalidNameBracketing_m2A7CC3D4E181CFB40C2B5624AFBE060DE02C5249(L_29, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_ScanName_mEFA0FBE1A3DFB35EA2E34D88F2E89DAC1EBE9A42_RuntimeMethod_var)));
}
IL_0090:
{
int32_t L_31 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_31, 1));
__this->____token_9 = 1;
return;
}
}
// System.Void System.Data.ExpressionParser::ScanDate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanDate_m31C7FE966DFFE6F5C0A1DF38D578DED1FFE62D8F (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_0 = L_0;
}
IL_0007:
{
int32_t L_1 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_1, 1));
int32_t L_2 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_0;
NullCheck(L_3);
if ((((int32_t)L_2) >= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_002c;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_0;
int32_t L_5 = __this->____pos_7;
NullCheck(L_4);
int32_t L_6 = L_5;
uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)35)))))
{
goto IL_0007;
}
}
IL_002c:
{
int32_t L_8 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = V_0;
NullCheck(L_9);
if ((((int32_t)L_8) >= ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
{
goto IL_0043;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = V_0;
int32_t L_11 = __this->____pos_7;
NullCheck(L_10);
int32_t L_12 = L_11;
uint16_t L_13 = (uint16_t)(L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
if ((((int32_t)L_13) == ((int32_t)((int32_t)35))))
{
goto IL_008e;
}
}
IL_0043:
{
int32_t L_14 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_15 = V_0;
NullCheck(L_15);
if ((((int32_t)L_14) < ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
{
goto IL_006f;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_16 = V_0;
int32_t L_17 = __this->____start_8;
int32_t L_18 = __this->____pos_7;
int32_t L_19 = __this->____start_8;
String_t* L_20;
L_20 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_16, L_17, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_18, 1)), L_19)), NULL);
Exception_t* L_21;
L_21 = ExprException_InvalidDate_mF35F42B44A62D383745C89CFEA6399068FE85592(L_20, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_ScanDate_m31C7FE966DFFE6F5C0A1DF38D578DED1FFE62D8F_RuntimeMethod_var)));
}
IL_006f:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = V_0;
int32_t L_23 = __this->____start_8;
int32_t L_24 = __this->____pos_7;
int32_t L_25 = __this->____start_8;
String_t* L_26;
L_26 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_22, L_23, ((int32_t)il2cpp_codegen_subtract(L_24, L_25)), NULL);
Exception_t* L_27;
L_27 = ExprException_InvalidDate_mF35F42B44A62D383745C89CFEA6399068FE85592(L_26, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_ScanDate_m31C7FE966DFFE6F5C0A1DF38D578DED1FFE62D8F_RuntimeMethod_var)));
}
IL_008e:
{
__this->____token_9 = 7;
int32_t L_28 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_28, 1));
return;
}
}
// System.Void System.Data.ExpressionParser::ScanBinaryConstant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanBinaryConstant_m6D90E3F9C3BB379A57F1E04F99A61FB8E4A95B27 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
return;
}
}
// System.Void System.Data.ExpressionParser::ScanReserved()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanReserved_mD3C734C9587954ECEC7ECE6726F714D361407263 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
String_t* V_1 = NULL;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_0 = L_0;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = V_0;
int32_t L_2 = __this->____pos_7;
NullCheck(L_1);
int32_t L_3 = L_2;
uint16_t L_4 = (uint16_t)(L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
bool L_5;
L_5 = ExpressionParser_IsAlpha_m18C25C4B3E3F7B2B732CFF84E6017FFBAF66A593(__this, L_4, NULL);
if (!L_5)
{
goto IL_00bf;
}
}
{
ExpressionParser_ScanName_mA81442BDA327D8BD59E79C12474F008BE77EE6AC(__this, NULL);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = V_0;
int32_t L_7 = __this->____start_8;
int32_t L_8 = __this->____pos_7;
int32_t L_9 = __this->____start_8;
String_t* L_10;
L_10 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_6, L_7, ((int32_t)il2cpp_codegen_subtract(L_8, L_9)), NULL);
V_1 = L_10;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_11;
L_11 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
NullCheck(L_11);
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_12;
L_12 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(13 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_11);
V_2 = L_12;
V_3 = 0;
il2cpp_codegen_runtime_class_init_inline(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_13 = ((ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_StaticFields*)il2cpp_codegen_static_fields_for(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var))->___s_reservedwords_0;
NullCheck(L_13);
V_4 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_13)->max_length)), 1));
}
IL_0052:
{
int32_t L_14 = V_3;
int32_t L_15 = V_4;
V_5 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_14, L_15))/2));
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_16 = V_2;
il2cpp_codegen_runtime_class_init_inline(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_17 = ((ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_StaticFields*)il2cpp_codegen_static_fields_for(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var))->___s_reservedwords_0;
int32_t L_18 = V_5;
NullCheck(L_17);
String_t* L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->____word_0;
String_t* L_20 = V_1;
NullCheck(L_16);
int32_t L_21;
L_21 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_16, L_19, L_20, 1);
V_6 = L_21;
int32_t L_22 = V_6;
if (L_22)
{
goto IL_00a8;
}
}
{
il2cpp_codegen_runtime_class_init_inline(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_23 = ((ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_StaticFields*)il2cpp_codegen_static_fields_for(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var))->___s_reservedwords_0;
int32_t L_24 = V_5;
NullCheck(L_23);
int32_t L_25 = ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->____token_1;
__this->____token_9 = L_25;
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_26 = ((ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_StaticFields*)il2cpp_codegen_static_fields_for(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var))->___s_reservedwords_0;
int32_t L_27 = V_5;
NullCheck(L_26);
int32_t L_28 = ((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->____op_2;
__this->____op_10 = L_28;
return;
}
IL_00a8:
{
int32_t L_29 = V_6;
if ((((int32_t)L_29) >= ((int32_t)0)))
{
goto IL_00b4;
}
}
{
int32_t L_30 = V_5;
V_3 = ((int32_t)il2cpp_codegen_add(L_30, 1));
goto IL_00ba;
}
IL_00b4:
{
int32_t L_31 = V_5;
V_4 = ((int32_t)il2cpp_codegen_subtract(L_31, 1));
}
IL_00ba:
{
int32_t L_32 = V_3;
int32_t L_33 = V_4;
if ((((int32_t)L_32) <= ((int32_t)L_33)))
{
goto IL_0052;
}
}
IL_00bf:
{
return;
}
}
// System.Void System.Data.ExpressionParser::ScanString(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanString_m1DAB500B142D64646DD19FD71E8200F23A75FAC3 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___escape0, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_0 = L_0;
goto IL_004b;
}
IL_0009:
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = V_0;
int32_t L_2 = __this->____pos_7;
V_2 = L_2;
int32_t L_3 = V_2;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_3, 1));
int32_t L_4 = V_2;
NullCheck(L_1);
int32_t L_5 = L_4;
uint16_t L_6 = (uint16_t)(L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_1 = L_6;
Il2CppChar L_7 = V_1;
Il2CppChar L_8 = ___escape0;
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
{
goto IL_0047;
}
}
{
int32_t L_9 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = V_0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
{
goto IL_0047;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = V_0;
int32_t L_12 = __this->____pos_7;
NullCheck(L_11);
int32_t L_13 = L_12;
uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
Il2CppChar L_15 = ___escape0;
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
{
goto IL_0047;
}
}
{
int32_t L_16 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_16, 1));
goto IL_004b;
}
IL_0047:
{
Il2CppChar L_17 = V_1;
Il2CppChar L_18 = ___escape0;
if ((((int32_t)L_17) == ((int32_t)L_18)))
{
goto IL_0056;
}
}
IL_004b:
{
int32_t L_19 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_20 = V_0;
NullCheck(L_20);
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
{
goto IL_0009;
}
}
IL_0056:
{
int32_t L_21 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_22 = V_0;
NullCheck(L_22);
if ((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))
{
goto IL_0082;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = V_0;
int32_t L_24 = __this->____start_8;
int32_t L_25 = __this->____pos_7;
int32_t L_26 = __this->____start_8;
String_t* L_27;
L_27 = String_CreateString_mB7B3AC2AF28010538650051A9000369B1CD6BAB6(NULL, L_23, L_24, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_25, 1)), L_26)), NULL);
Exception_t* L_28;
L_28 = ExprException_InvalidString_m90543A4C54B1408DC6A4BA3B147F118DE58CD095(L_27, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExpressionParser_ScanString_m1DAB500B142D64646DD19FD71E8200F23A75FAC3_RuntimeMethod_var)));
}
IL_0082:
{
__this->____token_9 = 6;
return;
}
}
// System.Void System.Data.ExpressionParser::ScanToken(System.Data.Tokens)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanToken_mB66AE61846B35A570718D8B77664BACF929D9354 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, int32_t ___token0, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = ExpressionParser_Scan_m42803B0F0F5C6EEFCE64ABA0B522C2B9897F22EC(__this, NULL);
int32_t L_1 = ___token0;
ExpressionParser_CheckToken_mBF433AC4A69A1F718E8759E4B237756A0E5BFF9C(__this, L_1, NULL);
return;
}
}
// System.Void System.Data.ExpressionParser::ScanWhite()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser_ScanWhite_m16925FCBCE38342361228EA2D519121253BA7C9A (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, const RuntimeMethod* method)
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->____text_6;
V_0 = L_0;
goto IL_0017;
}
IL_0009:
{
int32_t L_1 = __this->____pos_7;
__this->____pos_7 = ((int32_t)il2cpp_codegen_add(L_1, 1));
}
IL_0017:
{
int32_t L_2 = __this->____pos_7;
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = V_0;
NullCheck(L_3);
if ((((int32_t)L_2) >= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0032;
}
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_0;
int32_t L_5 = __this->____pos_7;
NullCheck(L_4);
int32_t L_6 = L_5;
uint16_t L_7 = (uint16_t)(L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
bool L_8;
L_8 = ExpressionParser_IsWhiteSpace_m6FEEC5BE3E9B9AF0F65D465EC4E5D68D3E48948E(__this, L_7, NULL);
if (L_8)
{
goto IL_0009;
}
}
IL_0032:
{
return;
}
}
// System.Boolean System.Data.ExpressionParser::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsWhiteSpace_m6FEEC5BE3E9B9AF0F65D465EC4E5D68D3E48948E (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)32))))
{
goto IL_000a;
}
}
{
Il2CppChar L_1 = ___ch0;
return (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
}
IL_000a:
{
return (bool)0;
}
}
// System.Boolean System.Data.ExpressionParser::IsAlphaNumeric(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsAlphaNumeric_m63A7CB6AA8213D5EB99B70C5519FF5209688E857 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)36))))
{
case 0:
{
goto IL_0167;
}
case 1:
{
goto IL_0169;
}
case 2:
{
goto IL_0169;
}
case 3:
{
goto IL_0169;
}
case 4:
{
goto IL_0169;
}
case 5:
{
goto IL_0169;
}
case 6:
{
goto IL_0169;
}
case 7:
{
goto IL_0169;
}
case 8:
{
goto IL_0169;
}
case 9:
{
goto IL_0169;
}
case 10:
{
goto IL_0169;
}
case 11:
{
goto IL_0169;
}
case 12:
{
goto IL_0167;
}
case 13:
{
goto IL_0167;
}
case 14:
{
goto IL_0167;
}
case 15:
{
goto IL_0167;
}
case 16:
{
goto IL_0167;
}
case 17:
{
goto IL_0167;
}
case 18:
{
goto IL_0167;
}
case 19:
{
goto IL_0167;
}
case 20:
{
goto IL_0167;
}
case 21:
{
goto IL_0167;
}
case 22:
{
goto IL_0169;
}
case 23:
{
goto IL_0169;
}
case 24:
{
goto IL_0169;
}
case 25:
{
goto IL_0169;
}
case 26:
{
goto IL_0169;
}
case 27:
{
goto IL_0169;
}
case 28:
{
goto IL_0169;
}
case 29:
{
goto IL_0167;
}
case 30:
{
goto IL_0167;
}
case 31:
{
goto IL_0167;
}
case 32:
{
goto IL_0167;
}
case 33:
{
goto IL_0167;
}
case 34:
{
goto IL_0167;
}
case 35:
{
goto IL_0167;
}
case 36:
{
goto IL_0167;
}
case 37:
{
goto IL_0167;
}
case 38:
{
goto IL_0167;
}
case 39:
{
goto IL_0167;
}
case 40:
{
goto IL_0167;
}
case 41:
{
goto IL_0167;
}
case 42:
{
goto IL_0167;
}
case 43:
{
goto IL_0167;
}
case 44:
{
goto IL_0167;
}
case 45:
{
goto IL_0167;
}
case 46:
{
goto IL_0167;
}
case 47:
{
goto IL_0167;
}
case 48:
{
goto IL_0167;
}
case 49:
{
goto IL_0167;
}
case 50:
{
goto IL_0167;
}
case 51:
{
goto IL_0167;
}
case 52:
{
goto IL_0167;
}
case 53:
{
goto IL_0167;
}
case 54:
{
goto IL_0167;
}
case 55:
{
goto IL_0169;
}
case 56:
{
goto IL_0169;
}
case 57:
{
goto IL_0169;
}
case 58:
{
goto IL_0169;
}
case 59:
{
goto IL_0167;
}
case 60:
{
goto IL_0169;
}
case 61:
{
goto IL_0167;
}
case 62:
{
goto IL_0167;
}
case 63:
{
goto IL_0167;
}
case 64:
{
goto IL_0167;
}
case 65:
{
goto IL_0167;
}
case 66:
{
goto IL_0167;
}
case 67:
{
goto IL_0167;
}
case 68:
{
goto IL_0167;
}
case 69:
{
goto IL_0167;
}
case 70:
{
goto IL_0167;
}
case 71:
{
goto IL_0167;
}
case 72:
{
goto IL_0167;
}
case 73:
{
goto IL_0167;
}
case 74:
{
goto IL_0167;
}
case 75:
{
goto IL_0167;
}
case 76:
{
goto IL_0167;
}
case 77:
{
goto IL_0167;
}
case 78:
{
goto IL_0167;
}
case 79:
{
goto IL_0167;
}
case 80:
{
goto IL_0167;
}
case 81:
{
goto IL_0167;
}
case 82:
{
goto IL_0167;
}
case 83:
{
goto IL_0167;
}
case 84:
{
goto IL_0167;
}
case 85:
{
goto IL_0167;
}
case 86:
{
goto IL_0167;
}
}
}
{
goto IL_0169;
}
IL_0167:
{
return (bool)1;
}
IL_0169:
{
Il2CppChar L_1 = ___ch0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)127))))
{
goto IL_0170;
}
}
{
return (bool)1;
}
IL_0170:
{
return (bool)0;
}
}
// System.Boolean System.Data.ExpressionParser::IsDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsDigit_m49E3AA446F0C7BD1CAC72553135A49523A336B43 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)48))))
{
case 0:
{
goto IL_0033;
}
case 1:
{
goto IL_0033;
}
case 2:
{
goto IL_0033;
}
case 3:
{
goto IL_0033;
}
case 4:
{
goto IL_0033;
}
case 5:
{
goto IL_0033;
}
case 6:
{
goto IL_0033;
}
case 7:
{
goto IL_0033;
}
case 8:
{
goto IL_0033;
}
case 9:
{
goto IL_0033;
}
}
}
{
goto IL_0035;
}
IL_0033:
{
return (bool)1;
}
IL_0035:
{
return (bool)0;
}
}
// System.Boolean System.Data.ExpressionParser::IsAlpha(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExpressionParser_IsAlpha_m18C25C4B3E3F7B2B732CFF84E6017FFBAF66A593 (ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311* __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)65))))
{
case 0:
{
goto IL_00f3;
}
case 1:
{
goto IL_00f3;
}
case 2:
{
goto IL_00f3;
}
case 3:
{
goto IL_00f3;
}
case 4:
{
goto IL_00f3;
}
case 5:
{
goto IL_00f3;
}
case 6:
{
goto IL_00f3;
}
case 7:
{
goto IL_00f3;
}
case 8:
{
goto IL_00f3;
}
case 9:
{
goto IL_00f3;
}
case 10:
{
goto IL_00f3;
}
case 11:
{
goto IL_00f3;
}
case 12:
{
goto IL_00f3;
}
case 13:
{
goto IL_00f3;
}
case 14:
{
goto IL_00f3;
}
case 15:
{
goto IL_00f3;
}
case 16:
{
goto IL_00f3;
}
case 17:
{
goto IL_00f3;
}
case 18:
{
goto IL_00f3;
}
case 19:
{
goto IL_00f3;
}
case 20:
{
goto IL_00f3;
}
case 21:
{
goto IL_00f3;
}
case 22:
{
goto IL_00f3;
}
case 23:
{
goto IL_00f3;
}
case 24:
{
goto IL_00f3;
}
case 25:
{
goto IL_00f3;
}
case 26:
{
goto IL_00f5;
}
case 27:
{
goto IL_00f5;
}
case 28:
{
goto IL_00f5;
}
case 29:
{
goto IL_00f5;
}
case 30:
{
goto IL_00f3;
}
case 31:
{
goto IL_00f5;
}
case 32:
{
goto IL_00f3;
}
case 33:
{
goto IL_00f3;
}
case 34:
{
goto IL_00f3;
}
case 35:
{
goto IL_00f3;
}
case 36:
{
goto IL_00f3;
}
case 37:
{
goto IL_00f3;
}
case 38:
{
goto IL_00f3;
}
case 39:
{
goto IL_00f3;
}
case 40:
{
goto IL_00f3;
}
case 41:
{
goto IL_00f3;
}
case 42:
{
goto IL_00f3;
}
case 43:
{
goto IL_00f3;
}
case 44:
{
goto IL_00f3;
}
case 45:
{
goto IL_00f3;
}
case 46:
{
goto IL_00f3;
}
case 47:
{
goto IL_00f3;
}
case 48:
{
goto IL_00f3;
}
case 49:
{
goto IL_00f3;
}
case 50:
{
goto IL_00f3;
}
case 51:
{
goto IL_00f3;
}
case 52:
{
goto IL_00f3;
}
case 53:
{
goto IL_00f3;
}
case 54:
{
goto IL_00f3;
}
case 55:
{
goto IL_00f3;
}
case 56:
{
goto IL_00f3;
}
case 57:
{
goto IL_00f3;
}
}
}
{
goto IL_00f5;
}
IL_00f3:
{
return (bool)1;
}
IL_00f5:
{
return (bool)0;
}
}
// System.Void System.Data.ExpressionParser::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExpressionParser__cctor_m01398DF827BC86B135C8C879E51364E046425304 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2342ED095E8746444A44CFCD5D8ACA13F0E7EEF8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2382B971DAD288CA5D307A54F89DB13E13D34BB0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26BAE57743DA67DEBF4CF9952459BCC4719B674B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral356838F077E0EFF08C8521D68D34EE0EC98EDB73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3ECB8E1843C72C921E80AF7EBAA40BE59115F111);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75DAF3DDC5264A4CB985E781D669336FFFC76920);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83ECAC77570F654DDCDD0C3283840B70F8109951);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral982FD14019FE2A8810D9B37E2E87BE76F94B62EB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCB79D47CC56B4CA4A5403B7731340DEC22E7BEA9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA4BE0F963380DB493604E9CA0B0B54F040F58C9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871);
s_Il2CppMethodInitialized = true;
}
{
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_0 = (ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2*)(ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2*)SZArrayNew(ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)12));
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_1 = L_0;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_2;
memset((&L_2), 0, sizeof(L_2));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_2), _stringLiteral2382B971DAD288CA5D307A54F89DB13E13D34BB0, ((int32_t)13), ((int32_t)26), /*hidden argument*/NULL);
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_2);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_3 = L_1;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_4;
memset((&L_4), 0, sizeof(L_4));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_4), _stringLiteral83ECAC77570F654DDCDD0C3283840B70F8109951, ((int32_t)13), 6, /*hidden argument*/NULL);
NullCheck(L_3);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_4);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_5 = L_3;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_6;
memset((&L_6), 0, sizeof(L_6));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_6), _stringLiteral75DAF3DDC5264A4CB985E781D669336FFFC76920, ((int32_t)14), 0, /*hidden argument*/NULL);
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_6);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_7 = L_5;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_8;
memset((&L_8), 0, sizeof(L_8));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_8), _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F, ((int32_t)11), ((int32_t)34), /*hidden argument*/NULL);
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(3), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_8);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_9 = L_7;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_10;
memset((&L_10), 0, sizeof(L_10));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_10), _stringLiteral2342ED095E8746444A44CFCD5D8ACA13F0E7EEF8, ((int32_t)13), 5, /*hidden argument*/NULL);
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(4), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_10);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_11 = L_9;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_12;
memset((&L_12), 0, sizeof(L_12));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_12), _stringLiteral26BAE57743DA67DEBF4CF9952459BCC4719B674B, ((int32_t)13), ((int32_t)13), /*hidden argument*/NULL);
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(5), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_12);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_13 = L_11;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_14;
memset((&L_14), 0, sizeof(L_14));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_14), _stringLiteral356838F077E0EFF08C8521D68D34EE0EC98EDB73, ((int32_t)13), ((int32_t)14), /*hidden argument*/NULL);
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(6), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_14);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_15 = L_13;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_16;
memset((&L_16), 0, sizeof(L_16));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_16), _stringLiteralCB79D47CC56B4CA4A5403B7731340DEC22E7BEA9, ((int32_t)12), 3, /*hidden argument*/NULL);
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(7), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_16);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_17 = L_15;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_18;
memset((&L_18), 0, sizeof(L_18));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_18), _stringLiteralDA4BE0F963380DB493604E9CA0B0B54F040F58C9, ((int32_t)11), ((int32_t)32), /*hidden argument*/NULL);
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(8), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_18);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_19 = L_17;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_20;
memset((&L_20), 0, sizeof(L_20));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_20), _stringLiteral3ECB8E1843C72C921E80AF7EBAA40BE59115F111, ((int32_t)13), ((int32_t)27), /*hidden argument*/NULL);
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_20);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_21 = L_19;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_22;
memset((&L_22), 0, sizeof(L_22));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_22), _stringLiteral982FD14019FE2A8810D9B37E2E87BE76F94B62EB, ((int32_t)15), 0, /*hidden argument*/NULL);
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_22);
ReservedWordsU5BU5D_t4DFBEC514B916E1E20FF4DFC7CF3735BB2299AB2* L_23 = L_21;
ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87 L_24;
memset((&L_24), 0, sizeof(L_24));
ReservedWords__ctor_mEE15ED1069D04ACEB1CC41BB40FEC6F00E5021F9((&L_24), _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871, ((int32_t)11), ((int32_t)33), /*hidden argument*/NULL);
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (ReservedWords_t2834E11516C795E0AD880A651793517590DFCF87)L_24);
((ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_StaticFields*)il2cpp_codegen_static_fields_for(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var))->___s_reservedwords_0 = L_23;
Il2CppCodeGenWriteBarrier((void**)(&((ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_StaticFields*)il2cpp_codegen_static_fields_for(ExpressionParser_tF1402BCC536E58E0FC153624C9FF367A3179A311_il2cpp_TypeInfo_var))->___s_reservedwords_0), (void*)L_23);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* DataSet_get_Tables_m8F063F3CDD2BB72B97034D0CE1838EFBFA15AC61_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method)
{
{
DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* L_0 = __this->____tableCollection_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataTableCollection_get_ObjectID_m5573EBAC8D40B37BE4F739836A4BC66F5E2E9EB5_inline (DataTableCollection_t9F8C02B7597B3B56A0DBB3313545C0AC3A4FE997* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____objectID_8;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataSet_get_ObjectID_mA76DF14B493013FD5E36F57ACA571D0A8C113489_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____objectID_24;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataTable_get_TableName_m6202A6E15E437F88142DF521B04EE2D5291ECF73_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____tableName_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataTable_get_ObjectID_m3A05B9B04446D482AE01B532B3A04146BD431358_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____objectID_75;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* DataSet_get_Locale_m826EBC4F080455722FF05B1529410F281E9D4264_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method)
{
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = __this->____culture_12;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataSet_get_CaseSensitive_m1C6E7EA2660F8DBED741526A31364B6F979DD509_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____caseSensitive_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* DataTable_get_DataSet_mA2A29956153EBBDB7B85AEFB5E871BF33535BE4E_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method)
{
{
DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* L_0 = __this->____dataSet_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataSet_get_DataSetName_m53D20A0B757B364BB8B3287A74AAA7351EA02A45_inline (DataSet_t1F72E9737C995EBFDCF793C87CAC3196EA02411B* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____dataSetName_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CollectionChangeEventHandler_Invoke_m33B16A0A4D512CD9ED6ABC8C52D88BD5C05649C7_inline (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (CollectionChangeEventHandler_tEC0AAABD75A4FDAEC5A3E8A0C754AC9A6F692F50* __this, RuntimeObject* ___sender0, CollectionChangeEventArgs_t27A05C16B442D16E079F0932D315156EFD82AB1D* ___e1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* DataTablePropertyDescriptor_get_Table_m4992608072974C915D6645F46999E6461DE4FE0A_inline (DataTablePropertyDescriptor_t4A558713248A446E1ACC1E3D6DC3DAB1894FE860* __this, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->___U3CTableU3Ek__BackingField_17;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataView_get_ObjectID_m27B121482CCCFC9422E758A7DCCA81C732B15AC3_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____objectID_30;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Index_get_RecordCount_mD2C55E6DC12BC4F256C0B27D1A9FEB100C35A7FD_inline (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____recordCount_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* DataTable_get_Locale_m7EE8F498C60742FFF844B132B3CC6054FBD5FB9F_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method)
{
{
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = __this->____culture_22;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_AllowNew_mDF7F437DBF84B9DFF4DBD76F6287ED5F3BD46C7F_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____allowNew_14;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_IsOpen_m14F7E0B768826F8B6DCEC9DD35E793B48EFBC329_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____open_13;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_AllowDelete_mFCDC4B3CBA3FAD4D2EF81622AA449436338F30C4_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____allowDelete_16;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* DataTable_get_Rows_m494EC146C4A26B22D334DE155CF3D68CE30CE718_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method)
{
{
DataRowCollection_t77048F68C7B973AFF280E6C540CE321E242FF738* L_0 = __this->____rowCollection_6;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* DataRowView_get_Row_m784F137A476C6D40C82584E6768B23CE2EA97B77_inline (DataRowView_t51724505EADBB0C11EEA0252510644143191B23B* __this, const RuntimeMethod* method)
{
{
DataRow_t4C2743279B40E332809F4E6EE3443B75E4C38388* L_0 = __this->____row_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataView_get_RowStateFilter_m63C6B3298EA30EF2D05CEBE0D11A09AEE4918C4F_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____recordStates_11;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Index_get_RefCount_m16AD66DC00C931B2096C8180EA7BE490DD3DBC65_inline (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____refCount_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataView_get_AllowEdit_m30F56486FC5FACCDC04ECEE8214A4E15D53DC0D1_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____allowEdit_15;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_ListChangedType_m2CC7DCB7C2DE84C78A9194BC7B376D53B10581A4_inline (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CListChangedTypeU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_NewIndex_m015DB5DEEFA5154BB4C39977584D5FCDB8FBBC98_inline (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CNewIndexU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListChangedEventArgs_get_OldIndex_m1FBD245795E09E5BCD0889DC405F1D5260389244_inline (ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3COldIndexU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataColumn_get_ColumnName_mDCFFC7BE298F91C064BFBA74E581C2B7D99C7D99_inline (DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____columnName_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListChangedEventHandler_Invoke_mA0F0B8AB273C63F017018390414C334FD602934E_inline (ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616* __this, RuntimeObject* ___sender0, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e1, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (ListChangedEventHandler_tDBF36F3E2C6B7538106878E1D5A7553C5EA77616* __this, RuntimeObject* ___sender0, ListChangedEventArgs_tAAB4841B3E3BD67D39FBE075E920B653B5F35442* ___e1, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___e1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* DataViewManager_get_DataViewSettings_m06DB0B13FD16F6D9FD564EBCD3A8BE66050C166D_inline (DataViewManager_t83DBD1D4E13D40F95A49F5EFB88BE0F60049B1F8* __this, const RuntimeMethod* method)
{
{
DataViewSettingCollection_tE1DD2D306B5849B4C616A6D4DBF8167744F49C73* L_0 = __this->____dataViewSettingsCollection_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool DataViewSetting_get_ApplyDefaultSort_m429025C4A76C3D7B08D1D3AA8BA7A77DDD4C0528_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->____applyDefaultSort_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataViewSetting_get_RowFilter_mAD32BA676924256BBB3F0EA1F1ED95FA3AFD3138_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____rowFilter_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DataViewSetting_get_Sort_m75FA10BA44DC585A3CDF9F58A5434841669A6AB3_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->____sort_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DataViewSetting_get_RowStateFilter_m354B304117778ACFBA05942D4BD186FADCF8D1F9_inline (DataViewSetting_tB99FD9B965F9FD3E9BDB703E1A0B851FC8357601* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____rowStateFilter_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* DataView_get_SortComparison_m4DBE1F7E1797CD5BB969AFED404D600738493860_inline (DataView_t882C19B1455AFCE770D60A43A690096801824A50* __this, const RuntimeMethod* method)
{
{
Comparison_1_t08F05E5982EA288B3368FA03B4763D49EFED87F0* L_0 = __this->____comparison_9;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* Index_get_Table_m7AE1679CC513F0971C6AF5043988B037A8347F47_inline (Index_tB35755A4A90336B5A005AD1320AAF1219DEE2483* __this, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* DataTable_get_Columns_mF03D7E14E2C43C9B80521C00ABD8CBE7EA19772E_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method)
{
{
DataColumnCollection_t8F6538DA2E98DED6F9FBD06C4C475533A548630E* L_0 = __this->____columnCollection_7;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* DataTable_GetListeners_m2FBA4FF6A7377D4EB968877410B144B626FF2D08_inline (DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* __this, const RuntimeMethod* method)
{
{
List_1_t73C786BB01E05FA7B2ACAA21DA57002B4503C95F* L_0 = __this->____dataViewListeners_69;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExpressionNode_BindTable_mE73D14C3A5AD6BBEAECD63E90C3828CB21DC71DC_inline (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ___table0, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = ___table0;
__this->____table_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____table_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* DataColumn_get_DataExpression_m4FA8DB2F5119D7850DACC69EAA5852ED4B9D952F_inline (DataColumn_t07796C0DD83AD590E7C821E08FE04A38FE8B1A66* __this, const RuntimeMethod* method)
{
{
DataExpression_t8B426B55556F5C9CD0AADB61EA0AE306F9AD72C6* L_0 = __this->____expression_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* ExpressionNode_get_table_mE4A556E518A71A19709F0829212CC0D3F135EBF9_inline (ExpressionNode_t377E2E82FCBACA8E4C9CFE1C6640CAC1BF1F3C31* __this, const RuntimeMethod* method)
{
{
DataTable_t9240A0D6726299C55832BF4EE085C864A1CCBB07* L_0 = __this->____table_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RBTreeEnumerator_get_Current_mCB9EE3BDCE8D688E0B6EA03B14E5D55ABF7E1325_gshared_inline (RBTreeEnumerator_tF257C6FDF2C10A1562F799244369D9CD12476115* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____current_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_0 = (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
return;
}
IL_0034:
{
int32_t L_9 = ___item0;
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline (const RuntimeMethod* method)
{
{
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ((EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 0)))->___Value_0;
return L_0;
}
}